FIXED - task 415: Evaluation precedence wrong for arithmetic expressions

http://code.google.com/p/google-refine/issues/detail?id=415

git-svn-id: http://google-refine.googlecode.com/svn/trunk@2123 7d457c2a-affb-35e4-300a-418c747d4874
This commit is contained in:
Tom Morris 2011-06-23 23:42:12 +00:00
parent d03c8a1f70
commit eb38ab75a4

View File

@ -1,6 +1,6 @@
/*
Copyright 2010, Google Inc.
Copyright 2010,2011. Google Inc.
All rights reserved.
Redistribution and use in source and binary forms, with or without
@ -119,7 +119,7 @@ public class Parser {
next(true);
Evaluable sub2 = parseSubExpression();
Evaluable sub2 = parseTerm();
sub = new OperatorCallExpr(new Evaluable[] { sub, sub2 }, op);
}