diff options
author | Ben Smith <binjimin@gmail.com> | 2017-07-06 13:07:24 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-07-06 13:07:24 -0700 |
commit | a5066278b34021de22b150442cb7a94d62e22102 (patch) | |
tree | cbc6e48d6397155bfe454f0b186209c0ac13b270 /test/parse/bad-string-escape.txt | |
parent | 12963c80e7083de8c0835745ec934ea356b9ef47 (diff) | |
download | wabt-a5066278b34021de22b150442cb7a94d62e22102.tar.gz wabt-a5066278b34021de22b150442cb7a94d62e22102.tar.bz2 wabt-a5066278b34021de22b150442cb7a94d62e22102.zip |
Remove BinaryErrorHandler, rename SourceErrorHandler (#553)
Since SourceErrorHandler can support binary locations, it doesn't make
much sense to have two different error handlers. There is now only an
ErrorHandler base class, and the first argument specifies whether the
error handler is expecting text or binary locations.
Diffstat (limited to 'test/parse/bad-string-escape.txt')
-rw-r--r-- | test/parse/bad-string-escape.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/parse/bad-string-escape.txt b/test/parse/bad-string-escape.txt index 3f8e1cfb..53a417bb 100644 --- a/test/parse/bad-string-escape.txt +++ b/test/parse/bad-string-escape.txt @@ -1,7 +1,7 @@ ;;; ERROR: 1 (module (func) (export "foobar\x\n" (func 0))) (;; STDERR ;;; -out/test/parse/bad-string-escape.txt:2:31: bad escape "\x" +out/test/parse/bad-string-escape.txt:2:31: error: bad escape "\x" (module (func) (export "foobar\x\n" (func 0))) ^^ ;;; STDERR ;;) |