Repository: flex-falcon Updated Branches: refs/heads/develop 5c3421c83 -> ee90dd3aa
fix some tests Project: http://git-wip-us.apache.org/repos/asf/flex-falcon/repo Commit: http://git-wip-us.apache.org/repos/asf/flex-falcon/commit/ee90dd3a Tree: http://git-wip-us.apache.org/repos/asf/flex-falcon/tree/ee90dd3a Diff: http://git-wip-us.apache.org/repos/asf/flex-falcon/diff/ee90dd3a Branch: refs/heads/develop Commit: ee90dd3aa3e6581b7a760a213473d1e370b539f4 Parents: 5c3421c Author: Alex Harui <[email protected]> Authored: Wed Jan 27 06:29:26 2016 -0800 Committer: Alex Harui <[email protected]> Committed: Wed Jan 27 06:29:26 2016 -0800 ---------------------------------------------------------------------- .../internal/codegen/mxml/flexjs/TestFlexJSMXMLScript.java | 2 +- .../test-files/flexjs/files/MyInitialView_result.js | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/flex-falcon/blob/ee90dd3a/compiler.jx.tests/src/org/apache/flex/compiler/internal/codegen/mxml/flexjs/TestFlexJSMXMLScript.java ---------------------------------------------------------------------- diff --git a/compiler.jx.tests/src/org/apache/flex/compiler/internal/codegen/mxml/flexjs/TestFlexJSMXMLScript.java b/compiler.jx.tests/src/org/apache/flex/compiler/internal/codegen/mxml/flexjs/TestFlexJSMXMLScript.java index ca6542d..279b9dd 100644 --- a/compiler.jx.tests/src/org/apache/flex/compiler/internal/codegen/mxml/flexjs/TestFlexJSMXMLScript.java +++ b/compiler.jx.tests/src/org/apache/flex/compiler/internal/codegen/mxml/flexjs/TestFlexJSMXMLScript.java @@ -102,11 +102,11 @@ public class TestFlexJSMXMLScript extends FlexJSTestBase " },\n" + " accessors: function () {\n" + " return {\n" + - " 'addedToParent': { type: 'void', declaredBy: 'AppName'}\n" + " };\n" + " },\n" + " methods: function () {\n" + " return {\n" + + " 'addedToParent': { type: 'void', declaredBy: 'AppName'}\n" + " };\n" + " }\n" + " };\n" + http://git-wip-us.apache.org/repos/asf/flex-falcon/blob/ee90dd3a/compiler.jx.tests/test-files/flexjs/files/MyInitialView_result.js ---------------------------------------------------------------------- diff --git a/compiler.jx.tests/test-files/flexjs/files/MyInitialView_result.js b/compiler.jx.tests/test-files/flexjs/files/MyInitialView_result.js index b646a24..c871755 100644 --- a/compiler.jx.tests/test-files/flexjs/files/MyInitialView_result.js +++ b/compiler.jx.tests/test-files/flexjs/files/MyInitialView_result.js @@ -233,13 +233,13 @@ MyInitialView.prototype.FLEXJS_REFLECTION_INFO = function () { 'input': { type: 'org.apache.flex.html.TextInput', declaredBy: 'MyInitialView'}, 'checkbox': { type: 'org.apache.flex.html.CheckBox', declaredBy: 'MyInitialView'}, 'list': { type: 'org.apache.flex.html.DropDownList', declaredBy: 'MyInitialView'}, - 'comboBox': { type: 'org.apache.flex.html.ComboBox', declaredBy: 'MyInitialView'}, - 'startTimer': { type: 'void', declaredBy: 'MyInitialView'}, - 'timerHandler': { type: 'void', declaredBy: 'MyInitialView'} + 'comboBox': { type: 'org.apache.flex.html.ComboBox', declaredBy: 'MyInitialView'} }; }, methods: function () { return { + 'startTimer': { type: 'void', declaredBy: 'MyInitialView'}, + 'timerHandler': { type: 'void', declaredBy: 'MyInitialView'}, '$EH0': { type: 'void', declaredBy: 'MyInitialView'}, '$EH1': { type: 'void', declaredBy: 'MyInitialView'}, '$EH2': { type: 'void', declaredBy: 'MyInitialView'},
