From 4dba7838d2d805f71faa065a3024232b505d9d21 Mon Sep 17 00:00:00 2001 From: Li Jin Date: Thu, 17 Apr 2025 11:22:37 +0800 Subject: Fix build. --- makefile | 2 -- spec/outputs/5.1/literals.lua | 44 ------------------------------------------- 2 files changed, 46 deletions(-) delete mode 100644 spec/outputs/5.1/literals.lua diff --git a/makefile b/makefile index d1b074a..d7e85d3 100644 --- a/makefile +++ b/makefile @@ -391,7 +391,6 @@ test: debug @./$(BIN_NAME) $(TEST_INPUT)/try_catch.yue -o $(TEST_OUTPUT)/5.1/try_catch.lua --target=5.1 @./$(BIN_NAME) $(TEST_INPUT)/attrib.yue -o $(TEST_OUTPUT)/5.1/attrib.lua --target=5.1 @./$(BIN_NAME) $(TEST_INPUT)/test/loops_spec.yue -o $(TEST_OUTPUT)/5.1/test/loops_spec.lua --target=5.1 - @./$(BIN_NAME) $(TEST_INPUT)/literals.yue -o $(TEST_OUTPUT)/5.1/literals.lua --target=5.1 @./$(BIN_NAME) -e spec/inputs/compile_doc.yue $(TEST_OUTPUT) @echo -en "Compile time: " @$(END_TIME) @@ -410,7 +409,6 @@ gen: release @./$(BIN_NAME) $(TEST_INPUT)/loops.yue -o $(GEN_OUTPUT)/5.1/loops.lua --target=5.1 @./$(BIN_NAME) $(TEST_INPUT)/try_catch.yue -o $(GEN_OUTPUT)/5.1/try_catch.lua --target=5.1 @./$(BIN_NAME) $(TEST_INPUT)/attrib.yue -o $(GEN_OUTPUT)/5.1/attrib.lua --target=5.1 - @./$(BIN_NAME) $(TEST_INPUT)/literals.yue -o $(GEN_OUTPUT)/5.1/literals.lua --target=5.1 @./$(BIN_NAME) $(TEST_INPUT)/test/loops_spec.yue -o $(GEN_OUTPUT)/5.1/test/loops_spec.lua --target=5.1 @./$(BIN_NAME) -e spec/inputs/compile_doc.yue $(GEN_OUTPUT) @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 @@ -local _ = { - 121, - 121.2323, - 121.2323e-1, - 121.2323e13434, - 2323E34, - 0x12323, - 0xfF2323, - 0xabcdef, - 0xABCDEF, - 0XFBC400, - 2.7365508487142853e-35, - 0xABCP321, - 2.4074124304840448e-35, - 6.4326233113470805e-94, - 0.1171875, - 162.1875, - 3.1415926535897931, - 1, - 8, - 15, - 201, - .2323, - .2323e-1, - .2323e13434, - 1LL, - 1ULL, - 9332LL, - 9332, - 0x2aLL, - 0x2aULL, - 1000000.0000001, - 1234e5678, - 1234E-5678, - 0xDEADBEEF, - [[ hello world ]], - [=[ hello world ]=], - [====[ hello world ]====], - "another world", - 'what world', - "\n hello world\n ", - 'yeah\n what is going on\n here is something cool' -} -return nil -- cgit v1.2.3-55-g6feb