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/expr/bad-const-i32-overflow.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/expr/bad-const-i32-overflow.txt')
| -rw-r--r-- | test/parse/expr/bad-const-i32-overflow.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/parse/expr/bad-const-i32-overflow.txt b/test/parse/expr/bad-const-i32-overflow.txt index 7ab37814..d99bcffc 100644 --- a/test/parse/expr/bad-const-i32-overflow.txt +++ b/test/parse/expr/bad-const-i32-overflow.txt @@ -1,7 +1,7 @@ ;;; ERROR: 1 (module (func i32.const 4294967296)) (;; STDERR ;;; -out/test/parse/expr/bad-const-i32-overflow.txt:2:25: invalid literal "4294967296" +out/test/parse/expr/bad-const-i32-overflow.txt:2:25: error: invalid literal "4294967296" (module (func i32.const 4294967296)) ^^^^^^^^^^ ;;; STDERR ;;) |
