Update tests with proper interface 'goog.require' statements Signed-off-by: Erik de Bruin <[email protected]>
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 <[email protected]> Authored: Tue Nov 5 12:13:21 2013 +0100 Committer: Erik de Bruin <[email protected]> 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}
