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 2014/11/21 13:10:24 UTC

[04/17] git commit: [flex-falcon] [refs/heads/develop] - 'byte' is a reserved word in JS (according to GCC)

'byte' is a reserved word in JS (according to GCC)

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/7e3efcf0
Tree: http://git-wip-us.apache.org/repos/asf/flex-falcon/tree/7e3efcf0
Diff: http://git-wip-us.apache.org/repos/asf/flex-falcon/diff/7e3efcf0

Branch: refs/heads/develop
Commit: 7e3efcf0040a4332988da6c3e8ffe4f8d91e299b
Parents: 773774c
Author: Erik de Bruin <er...@ixsoftware.nl>
Authored: Fri Nov 21 11:42:06 2014 +0100
Committer: Erik de Bruin <er...@ixsoftware.nl>
Committed: Fri Nov 21 11:42:06 2014 +0100

----------------------------------------------------------------------
 compiler.jx/src/org/apache/flex/compiler/utils/NativeUtils.java | 2 ++
 1 file changed, 2 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-falcon/blob/7e3efcf0/compiler.jx/src/org/apache/flex/compiler/utils/NativeUtils.java
----------------------------------------------------------------------
diff --git a/compiler.jx/src/org/apache/flex/compiler/utils/NativeUtils.java b/compiler.jx/src/org/apache/flex/compiler/utils/NativeUtils.java
index 4f53496..9ea630b 100644
--- a/compiler.jx/src/org/apache/flex/compiler/utils/NativeUtils.java
+++ b/compiler.jx/src/org/apache/flex/compiler/utils/NativeUtils.java
@@ -120,6 +120,8 @@ public class NativeUtils
         XMLList("XMLList"),
         */
         
+        _byte("byte"),
+        
         ;
         private final String value;