You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flex.apache.org by er...@apache.org on 2013/11/05 13:45:32 UTC

[06/11] git commit: [flex-falcon] [refs/heads/develop] - Update tests with proper interface 'goog.require' statements

Update tests with proper interface 'goog.require' statements

Signed-off-by: Erik de Bruin <er...@ixsoftware.nl>


Project: http://git-wip-us.apache.org/repos/asf/flex-falcon/repo
Commit: http://git-wip-us.apache.org/repos/asf/flex-falcon/commit/7e6c110e
Tree: http://git-wip-us.apache.org/repos/asf/flex-falcon/tree/7e6c110e
Diff: http://git-wip-us.apache.org/repos/asf/flex-falcon/diff/7e6c110e

Branch: refs/heads/develop
Commit: 7e6c110e5c25cd6674ebd6341df0c478141e9982
Parents: 170f8c8
Author: Erik de Bruin <er...@ixsoftware.nl>
Authored: Tue Nov 5 12:13:21 2013 +0100
Committer: Erik de Bruin <er...@ixsoftware.nl>
Committed: Tue Nov 5 12:13:21 2013 +0100

----------------------------------------------------------------------
 .../test-files/flexjs/projects/interfaces/Test_result.js          | 3 +++
 .../test-files/flexjs/projects/interfaces/interfaces/IA_result.js | 2 ++
 .../test-files/flexjs/projects/interfaces/interfaces/IC_result.js | 2 ++
 3 files changed, 7 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-falcon/blob/7e6c110e/compiler.jx.tests/test-files/flexjs/projects/interfaces/Test_result.js
----------------------------------------------------------------------
diff --git a/compiler.jx.tests/test-files/flexjs/projects/interfaces/Test_result.js b/compiler.jx.tests/test-files/flexjs/projects/interfaces/Test_result.js
index 40ac8e7..e82298a 100644
--- a/compiler.jx.tests/test-files/flexjs/projects/interfaces/Test_result.js
+++ b/compiler.jx.tests/test-files/flexjs/projects/interfaces/Test_result.js
@@ -2,6 +2,9 @@ goog.provide('Test');
 
 goog.require('classes.A');
 
+goog.require('interfaces.IA');
+goog.require('interfaces.IE');
+
 goog.require('org.apache.flex.utils.Language');
 
 /**

http://git-wip-us.apache.org/repos/asf/flex-falcon/blob/7e6c110e/compiler.jx.tests/test-files/flexjs/projects/interfaces/interfaces/IA_result.js
----------------------------------------------------------------------
diff --git a/compiler.jx.tests/test-files/flexjs/projects/interfaces/interfaces/IA_result.js b/compiler.jx.tests/test-files/flexjs/projects/interfaces/interfaces/IA_result.js
index e052dfc..7f5bbae 100644
--- a/compiler.jx.tests/test-files/flexjs/projects/interfaces/interfaces/IA_result.js
+++ b/compiler.jx.tests/test-files/flexjs/projects/interfaces/interfaces/IA_result.js
@@ -1,5 +1,7 @@
 goog.provide('interfaces.IA');
 
+goog.require('interfaces.IC');
+
 /**
  * @interface
  * @extends {interfaces.IC}

http://git-wip-us.apache.org/repos/asf/flex-falcon/blob/7e6c110e/compiler.jx.tests/test-files/flexjs/projects/interfaces/interfaces/IC_result.js
----------------------------------------------------------------------
diff --git a/compiler.jx.tests/test-files/flexjs/projects/interfaces/interfaces/IC_result.js b/compiler.jx.tests/test-files/flexjs/projects/interfaces/interfaces/IC_result.js
index 5e57530..b48eec9 100644
--- a/compiler.jx.tests/test-files/flexjs/projects/interfaces/interfaces/IC_result.js
+++ b/compiler.jx.tests/test-files/flexjs/projects/interfaces/interfaces/IC_result.js
@@ -1,5 +1,7 @@
 goog.provide('interfaces.IC');
 
+goog.require('interfaces.ID');
+
 /**
  * @interface
  * @extends {interfaces.ID}