Some minor fixes in parser: Do not warn on escape sequences. Allow 'new' operator without parens. Fix 'var' parsing in preparser. Fix a test.

This commit is contained in:
Ilmir Usmanov
2014-10-08 16:31:50 +04:00
parent f2760fdac6
commit c3f493c693
3 changed files with 28 additions and 11 deletions
+1 -1
View File
@@ -12,4 +12,4 @@
// See the License for the specific language governing permissions and
// limitations under the License.
assert("x\0a" < "x\0b") && ("x\0b" < "x\0c"));
assert(("x\0a" < "x\0b") && ("x\0b" < "x\0c"));