diff options
author | Benoit Giannangeli <giann008@gmail.com> | 2017-02-28 21:15:16 +0100 |
---|---|---|
committer | Benoit Giannangeli <benoit.giannangeli@boursorama.fr> | 2017-03-01 09:32:28 +0100 |
commit | 74dda64eab7951da520dc451a1f3bbb8c7d62706 (patch) | |
tree | 26930f74654a0be55cc418c64fa2ba2713e875c6 /tests/llex.js | |
parent | dfac155a3f8b650222fa784303e599f4e50abe67 (diff) | |
download | fengari-74dda64eab7951da520dc451a1f3bbb8c7d62706.tar.gz fengari-74dda64eab7951da520dc451a1f3bbb8c7d62706.tar.bz2 fengari-74dda64eab7951da520dc451a1f3bbb8c7d62706.zip |
Bytecode generation
Diffstat (limited to 'tests/llex.js')
-rw-r--r-- | tests/llex.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/llex.js b/tests/llex.js index 725d3f8..1457af3 100644 --- a/tests/llex.js +++ b/tests/llex.js @@ -45,7 +45,7 @@ test('basic lexing: TK_RETURN, TK_STRING', function (t) { readTokens, [R.TK_RETURN, R.TK_STRING], "Correct tokens found" - ) + ); }); @@ -93,6 +93,6 @@ test('TK_LOCAL, TK_NAME, TK_INT', function (t) { R.TK_RETURN, R.TK_NAME, '(', R.TK_STRING, ')', '+', R.TK_INT ], "Correct tokens found" - ) + ); });
\ No newline at end of file |