Add missing 'instanceof' enumeration 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/39102dfc Tree: http://git-wip-us.apache.org/repos/asf/flex-falcon/tree/39102dfc Diff: http://git-wip-us.apache.org/repos/asf/flex-falcon/diff/39102dfc Branch: refs/heads/develop Commit: 39102dfc0b7c67a6c0ee2ec8b78fe180835e407d Parents: 765a8c2 Author: Erik de Bruin <[email protected]> Authored: Tue Nov 5 12:18:29 2013 +0100 Committer: Erik de Bruin <[email protected]> Committed: Tue Nov 5 12:18:29 2013 +0100 ---------------------------------------------------------------------- .../apache/flex/compiler/internal/codegen/as/ASEmitterTokens.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/flex-falcon/blob/39102dfc/compiler.jx/src/org/apache/flex/compiler/internal/codegen/as/ASEmitterTokens.java ---------------------------------------------------------------------- diff --git a/compiler.jx/src/org/apache/flex/compiler/internal/codegen/as/ASEmitterTokens.java b/compiler.jx/src/org/apache/flex/compiler/internal/codegen/as/ASEmitterTokens.java index 119c38a..fc1f1c7 100644 --- a/compiler.jx/src/org/apache/flex/compiler/internal/codegen/as/ASEmitterTokens.java +++ b/compiler.jx/src/org/apache/flex/compiler/internal/codegen/as/ASEmitterTokens.java @@ -132,7 +132,7 @@ public enum ASEmitterTokens implements IEmitterTokens // int TOKEN_OPERATOR_GREATER_THAN_EQUALS = 97; LESS_THAN("<"), // int TOKEN_OPERATOR_LESS_THAN_EQUALS = 99; - // int TOKEN_KEYWORD_INSTANCEOF = 100; + INSTANCEOF("instanceof"), IS("is"), AS("as"), // int TOKEN_OPERATOR_BITWISE_LEFT_SHIFT = 103;
