blob: f2626d9a23cbb6a6d8d13c4775029ae568cf7bc9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
;;; TOOL: wast2json
;;; ERROR: 1
;; syntax is (output name? text?)
(output)
(output "hello")
(output $var)
(output $var "hello")
(;; STDERR ;;;
out/test/parse/bad-output-command.txt:4:2: error: output command is not supported
(output)
^^^^^^
out/test/parse/bad-output-command.txt:5:2: error: output command is not supported
(output "hello")
^^^^^^
out/test/parse/bad-output-command.txt:6:2: error: output command is not supported
(output $var)
^^^^^^
out/test/parse/bad-output-command.txt:7:2: error: output command is not supported
(output $var "hello")
^^^^^^
;;; STDERR ;;)
|