Commit e0e5c150 authored by Robert Griesemer's avatar Robert Griesemer

exp/eval test: fix build

R=r
CC=golang-dev
https://golang.org/cl/1599043
parent ace5269d
...@@ -12,7 +12,7 @@ import ( ...@@ -12,7 +12,7 @@ import (
var undefined = "undefined" var undefined = "undefined"
var typeAsExpr = "type .* used as expression" var typeAsExpr = "type .* used as expression"
var badCharLit = "character literal" var badCharLit = "character literal"
var illegalEscape = "illegal char escape" var unknownEscape = "unknown escape sequence"
var opTypes = "illegal (operand|argument) type|cannot index into" var opTypes = "illegal (operand|argument) type|cannot index into"
var badAddrOf = "cannot take the address" var badAddrOf = "cannot take the address"
var constantTruncated = "constant [^ ]* truncated" var constantTruncated = "constant [^ ]* truncated"
...@@ -37,7 +37,7 @@ var exprTests = []test{ ...@@ -37,7 +37,7 @@ var exprTests = []test{
// Produces two parse errors // Produces two parse errors
//CErr("'''", ""), //CErr("'''", ""),
CErr("'\n'", badCharLit), CErr("'\n'", badCharLit),
CErr("'\\z'", illegalEscape), CErr("'\\z'", unknownEscape),
CErr("'ab'", badCharLit), CErr("'ab'", badCharLit),
Val("1.0", bignum.Rat(1, 1)), Val("1.0", bignum.Rat(1, 1)),
...@@ -48,7 +48,7 @@ var exprTests = []test{ ...@@ -48,7 +48,7 @@ var exprTests = []test{
Val("\"abc\"", "abc"), Val("\"abc\"", "abc"),
Val("\"\"", ""), Val("\"\"", ""),
Val("\"\\n\\\"\"", "\n\""), Val("\"\\n\\\"\"", "\n\""),
CErr("\"\\z\"", illegalEscape), CErr("\"\\z\"", unknownEscape),
CErr("\"abc", "string not terminated"), CErr("\"abc", "string not terminated"),
Val("(i)", 1), Val("(i)", 1),
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment