Skip to content

Commit e50a23b

Browse files
committed
Rename wast to wat
1 parent 6b45925 commit e50a23b

123 files changed

Lines changed: 8534 additions & 176 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

β€Žbin/asc.jsβ€Ž

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ exports.main = function main(argv, options, callback) {
129129
"Syntax: asc [entryFile ...] [options]",
130130
"",
131131
"Examples: asc hello.ts",
132-
" asc hello.ts -b hello.wasm -t hello.wast",
132+
" asc hello.ts -b hello.wasm -t hello.wat",
133133
" asc hello1.ts hello2.ts -b -O > hello.wasm",
134134
"",
135135
"Options:"
@@ -392,7 +392,7 @@ exports.main = function main(argv, options, callback) {
392392
let hasStdout = false;
393393

394394
if (args.outFile != null) {
395-
if (/\.wast$/.test(args.outFile) && args.textFile == null)
395+
if (/\.was?t$/.test(args.outFile) && args.textFile == null)
396396
args.textFile = args.outFile;
397397
else if (/\.js$/.test(args.outFile) && args.asmjsFile == null)
398398
args.asmjsFile = args.outFile;

β€Žbin/asc.jsonβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@
5353
"aliases": [ "b" ]
5454
},
5555
"textFile": {
56-
"desc": "Specifies the text output file (.wast).",
56+
"desc": "Specifies the text output file (.wat).",
5757
"type": "string",
5858
"aliases": [ "t" ]
5959
},

β€Ždist/asc.jsβ€Ž

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

β€Ždist/assemblyscript.jsβ€Ž

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

β€Ždist/assemblyscript.js.mapβ€Ž

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

β€Žexamples/.gitignoreβ€Ž

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
*.wast
21
*.wasm
32
*.wasm.map
43
node_modules/

0 commit comments

Comments
Β (0)