Repository: flex-falcon Updated Branches: refs/heads/develop 4e7322ff0 -> 4ddcbbfbf
handle integers when printing #ObjectReferenceNumber Project: http://git-wip-us.apache.org/repos/asf/flex-falcon/repo Commit: http://git-wip-us.apache.org/repos/asf/flex-falcon/commit/4ddcbbfb Tree: http://git-wip-us.apache.org/repos/asf/flex-falcon/tree/4ddcbbfb Diff: http://git-wip-us.apache.org/repos/asf/flex-falcon/diff/4ddcbbfb Branch: refs/heads/develop Commit: 4ddcbbfbf609e5c79deb08a3d3bf84f0835381d8 Parents: 4e7322f Author: Alex Harui <[email protected]> Authored: Fri Jun 12 15:18:03 2015 -0700 Committer: Alex Harui <[email protected]> Committed: Fri Jun 12 15:18:49 2015 -0700 ---------------------------------------------------------------------- .../src/flash/tools/debugger/expression/AS3DebuggerRules.jbg | 6 ++++++ 1 file changed, 6 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/flex-falcon/blob/4ddcbbfb/debugger/src/flash/tools/debugger/expression/AS3DebuggerRules.jbg ---------------------------------------------------------------------- diff --git a/debugger/src/flash/tools/debugger/expression/AS3DebuggerRules.jbg b/debugger/src/flash/tools/debugger/expression/AS3DebuggerRules.jbg index 3be6ab7..9664a03 100644 --- a/debugger/src/flash/tools/debugger/expression/AS3DebuggerRules.jbg +++ b/debugger/src/flash/tools/debugger/expression/AS3DebuggerRules.jbg @@ -636,6 +636,9 @@ JBurg.Reduction reducer.transform_expression_to_constant_value(__p, expression); integer_constant = LiteralIntegerZeroID(void) : 1 JBurg.Reduction reducer.getIntegerZeroContent(__p); +integer_constant = LiteralIntegerID(void) : 1 +JBurg.Reduction reducer.getIntegerContent(__p); + uint_constant = LiteralIntegerZeroID(void) : 1 JBurg.Reduction reducer.getIntegerZeroContentAsLong(__p); @@ -690,6 +693,9 @@ JBurg.Reduction reducer.getDoubleContent(__p); expression = double_constant : 5 JBurg.Reduction reducer.transform_double_constant(__p, double_constant); +expression = integer_constant : 5 +JBurg.Reduction reducer.transform_integer_constant(__p, integer_constant); + expression = numeric_constant : 5 JBurg.Reduction reducer.transform_numeric_constant(__p, numeric_constant);
