Fix output after refactoring test.

Signed-off-by: Erik de Bruin <e...@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/b484b018
Tree: http://git-wip-us.apache.org/repos/asf/flex-falcon/tree/b484b018
Diff: http://git-wip-us.apache.org/repos/asf/flex-falcon/diff/b484b018

Branch: refs/heads/develop
Commit: b484b0184278c0c172aa761374f4e3b700bc6ae4
Parents: cdddadc
Author: Erik de Bruin <e...@ixsoftware.nl>
Authored: Wed Jul 2 16:05:28 2014 +0200
Committer: Erik de Bruin <e...@ixsoftware.nl>
Committed: Fri Aug 1 12:59:15 2014 +0200

----------------------------------------------------------------------
 .../test-files/vf2js/files/SimpleMXML_result.js         | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-falcon/blob/b484b018/compiler.jx.tests/test-files/vf2js/files/SimpleMXML_result.js
----------------------------------------------------------------------
diff --git a/compiler.jx.tests/test-files/vf2js/files/SimpleMXML_result.js 
b/compiler.jx.tests/test-files/vf2js/files/SimpleMXML_result.js
index cbc2b0c..cbcbcb3 100644
--- a/compiler.jx.tests/test-files/vf2js/files/SimpleMXML_result.js
+++ b/compiler.jx.tests/test-files/vf2js/files/SimpleMXML_result.js
@@ -12,14 +12,14 @@
  * limitations under the License.
  */
 /**
- * Simple
+ * SimpleMXML
  *
  * @fileoverview
  *
  * @suppress {checkTypes}
  */
 
-goog.provide('Simple');
+goog.provide('SimpleMXML');
 
 goog.require('vf2js_s.components.Application');
 goog.require('vf2js_mx.components.Button');
@@ -32,7 +32,7 @@ goog.require('vf2js_s.components.Button');
  * @constructor
  * @extends {vf2js_s.components.Application}
  */
-Simple = function() {
+SimpleMXML = function() {
   goog.base(this);
   
   /**
@@ -59,7 +59,7 @@ Simple = function() {
    */
   this.mxmldp;
 };
-goog.inherits(Simple, vf2js_s.components.Application);
+goog.inherits(SimpleMXML, vf2js_s.components.Application);
 
 
 /**
@@ -67,14 +67,14 @@ goog.inherits(Simple, vf2js_s.components.Application);
  *
  * @type {Object.<string, Array.<Object>>}
  */
-Simple.prototype.FLEXJS_CLASS_INFO = { names: [{ name: 'Simple', qName: 
'Simple' }] };
+SimpleMXML.prototype.FLEXJS_CLASS_INFO = { names: [{ name: 'SimpleMXML', 
qName: 'SimpleMXML' }] };
 
 
 /**
  * @override
  * @return {Array} the Array of UI element descriptors.
  */
-Simple.prototype.get_MXMLProperties = function()
+SimpleMXML.prototype.get_MXMLProperties = function()
 {
   if (this.mxmldp == undefined)
   {

Reply via email to