diff options
-rw-r--r-- | makefile | 2 | ||||
-rw-r--r-- | spec/outputs/5.1/literals.lua | 44 |
2 files changed, 0 insertions, 46 deletions
@@ -391,7 +391,6 @@ test: debug | |||
391 | @./$(BIN_NAME) $(TEST_INPUT)/try_catch.yue -o $(TEST_OUTPUT)/5.1/try_catch.lua --target=5.1 | 391 | @./$(BIN_NAME) $(TEST_INPUT)/try_catch.yue -o $(TEST_OUTPUT)/5.1/try_catch.lua --target=5.1 |
392 | @./$(BIN_NAME) $(TEST_INPUT)/attrib.yue -o $(TEST_OUTPUT)/5.1/attrib.lua --target=5.1 | 392 | @./$(BIN_NAME) $(TEST_INPUT)/attrib.yue -o $(TEST_OUTPUT)/5.1/attrib.lua --target=5.1 |
393 | @./$(BIN_NAME) $(TEST_INPUT)/test/loops_spec.yue -o $(TEST_OUTPUT)/5.1/test/loops_spec.lua --target=5.1 | 393 | @./$(BIN_NAME) $(TEST_INPUT)/test/loops_spec.yue -o $(TEST_OUTPUT)/5.1/test/loops_spec.lua --target=5.1 |
394 | @./$(BIN_NAME) $(TEST_INPUT)/literals.yue -o $(TEST_OUTPUT)/5.1/literals.lua --target=5.1 | ||
395 | @./$(BIN_NAME) -e spec/inputs/compile_doc.yue $(TEST_OUTPUT) | 394 | @./$(BIN_NAME) -e spec/inputs/compile_doc.yue $(TEST_OUTPUT) |
396 | @echo -en "Compile time: " | 395 | @echo -en "Compile time: " |
397 | @$(END_TIME) | 396 | @$(END_TIME) |
@@ -410,7 +409,6 @@ gen: release | |||
410 | @./$(BIN_NAME) $(TEST_INPUT)/loops.yue -o $(GEN_OUTPUT)/5.1/loops.lua --target=5.1 | 409 | @./$(BIN_NAME) $(TEST_INPUT)/loops.yue -o $(GEN_OUTPUT)/5.1/loops.lua --target=5.1 |
411 | @./$(BIN_NAME) $(TEST_INPUT)/try_catch.yue -o $(GEN_OUTPUT)/5.1/try_catch.lua --target=5.1 | 410 | @./$(BIN_NAME) $(TEST_INPUT)/try_catch.yue -o $(GEN_OUTPUT)/5.1/try_catch.lua --target=5.1 |
412 | @./$(BIN_NAME) $(TEST_INPUT)/attrib.yue -o $(GEN_OUTPUT)/5.1/attrib.lua --target=5.1 | 411 | @./$(BIN_NAME) $(TEST_INPUT)/attrib.yue -o $(GEN_OUTPUT)/5.1/attrib.lua --target=5.1 |
413 | @./$(BIN_NAME) $(TEST_INPUT)/literals.yue -o $(GEN_OUTPUT)/5.1/literals.lua --target=5.1 | ||
414 | @./$(BIN_NAME) $(TEST_INPUT)/test/loops_spec.yue -o $(GEN_OUTPUT)/5.1/test/loops_spec.lua --target=5.1 | 412 | @./$(BIN_NAME) $(TEST_INPUT)/test/loops_spec.yue -o $(GEN_OUTPUT)/5.1/test/loops_spec.lua --target=5.1 |
415 | @./$(BIN_NAME) -e spec/inputs/compile_doc.yue $(GEN_OUTPUT) | 413 | @./$(BIN_NAME) -e spec/inputs/compile_doc.yue $(GEN_OUTPUT) |
416 | @echo -en "Compile time: " | 414 | @echo -en "Compile time: " |
diff --git a/spec/outputs/5.1/literals.lua b/spec/outputs/5.1/literals.lua deleted file mode 100644 index 36c705a..0000000 --- a/spec/outputs/5.1/literals.lua +++ /dev/null | |||
@@ -1,44 +0,0 @@ | |||
1 | local _ = { | ||
2 | 121, | ||
3 | 121.2323, | ||
4 | 121.2323e-1, | ||
5 | 121.2323e13434, | ||
6 | 2323E34, | ||
7 | 0x12323, | ||
8 | 0xfF2323, | ||
9 | 0xabcdef, | ||
10 | 0xABCDEF, | ||
11 | 0XFBC400, | ||
12 | 2.7365508487142853e-35, | ||
13 | 0xABCP321, | ||
14 | 2.4074124304840448e-35, | ||
15 | 6.4326233113470805e-94, | ||
16 | 0.1171875, | ||
17 | 162.1875, | ||
18 | 3.1415926535897931, | ||
19 | 1, | ||
20 | 8, | ||
21 | 15, | ||
22 | 201, | ||
23 | .2323, | ||
24 | .2323e-1, | ||
25 | .2323e13434, | ||
26 | 1LL, | ||
27 | 1ULL, | ||
28 | 9332LL, | ||
29 | 9332, | ||
30 | 0x2aLL, | ||
31 | 0x2aULL, | ||
32 | 1000000.0000001, | ||
33 | 1234e5678, | ||
34 | 1234E-5678, | ||
35 | 0xDEADBEEF, | ||
36 | [[ hello world ]], | ||
37 | [=[ hello world ]=], | ||
38 | [====[ hello world ]====], | ||
39 | "another world", | ||
40 | 'what world', | ||
41 | "\n hello world\n ", | ||
42 | 'yeah\n what is going on\n here is something cool' | ||
43 | } | ||
44 | return nil | ||