Skip to content
This repository has been archived by the owner on Feb 28, 2018. It is now read-only.

Commit

Permalink
Merge branch 'feature-wast-text-format-emitter'
Browse files Browse the repository at this point in the history
  • Loading branch information
nidin committed Jun 17, 2017
2 parents 14c0dcc + 3b51c0c commit 771eeb2
Show file tree
Hide file tree
Showing 20 changed files with 1,262 additions and 774 deletions.
2 changes: 1 addition & 1 deletion lib/tc.bat
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ rem ts-node %TURBO_PATH%\lib\tc.ts %1 %2 %3 %4.%ext%
node %TURBO_PATH%\lib\tc.js %1 %2 %3 %4.%ext%
IF %ERRORLEVEL% EQU 0 (
IF %ext% EQU wasm (
wasm2wast %4.wasm -o %4.wast -v
wasm2wast %4.wasm -o %4.wabt.wast -v
)
)

Expand Down
2 changes: 1 addition & 1 deletion lib/tc.sh
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ fi
ts-node ${TURBO_PATH}/lib/tc.ts $1 $2 $3 $4.$ext
if [ $? == 0 ] && [ $2 == --wasm ];
then
wasm2wast $4.$ext -o $4.wast -v
wasm2wast $4.$ext -o $4.wabt.wast -v
fi

exit $?
Loading

0 comments on commit 771eeb2

Please sign in to comment.