Skip to content

Commit c5a465f

Browse files
authored
Merge pull request #10 from CppCXY/refactor
Refactor
2 parents 09306b1 + 499738d commit c5a465f

186 files changed

Lines changed: 28848 additions & 28804 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.

.emmyrc.json

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
{
22
"diagnostics": {
33
"enable": false
4+
},
5+
"runtime": {
6+
"extensions": [],
7+
"frameworkVersions": [],
8+
"nonstandardSymbol": [],
9+
"requireLikeFunction": [],
10+
"requirePattern": [],
11+
"special": {},
12+
"version": "Lua5.5"
413
}
514
}

.github/workflows/benchmarks.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -26,11 +26,11 @@ jobs:
2626
- name: Extract Lua source
2727
run: |
2828
cd lua_src
29-
unzip -o lua-5.4.8.zip
29+
unzip -o lua-5.5.0.zip
3030
3131
- name: Build and Install Native Lua from source
3232
run: |
33-
cd lua_src/lua-5.4.8
33+
cd lua_src/lua-5.5.0
3434
make linux
3535
sudo make install INSTALL_TOP=/usr/local
3636
echo "/usr/local/bin" >> $GITHUB_PATH
@@ -65,12 +65,12 @@ jobs:
6565
shell: pwsh
6666
run: |
6767
cd lua_src
68-
Expand-Archive -Path lua-5.4.8.zip -DestinationPath . -Force
68+
Expand-Archive -Path lua-5.5.0.zip -DestinationPath . -Force
6969
7070
- name: Build Native Lua with CMake
7171
shell: pwsh
7272
run: |
73-
cd lua_src/lua-5.4.8
73+
cd lua_src/lua-5.5.0
7474
cmake -B build -DCMAKE_BUILD_TYPE=Release -DLUA_BUILD_INTERPRETER=ON
7575
cmake --build build --config Release
7676
# Add to PATH for this job
@@ -116,11 +116,11 @@ jobs:
116116
- name: Extract Lua source
117117
run: |
118118
cd lua_src
119-
unzip -o lua-5.4.8.zip
119+
unzip -o lua-5.5.0.zip
120120
121121
- name: Build and Install Native Lua from source
122122
run: |
123-
cd lua_src/lua-5.4.8
123+
cd lua_src/lua-5.5.0
124124
make macosx
125125
sudo make install INSTALL_TOP=/usr/local
126126
echo "/usr/local/bin" >> $GITHUB_PATH

.gitignore

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,6 @@
11
/target
2-
lua_src/lua-5.4.8
2+
bytecode_comparison_output
3+
lua_src/lua-5.5.0/
4+
lua_src/lua-5.5.0/doc
5+
lua_src/lua-5.5.0/out
6+
lua_src/lua-5.5.0/.vs

.vscode/launch.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
}
1818
},
1919
"args": [
20-
"test_simple.lua"
20+
"test_eqi.lua"
2121
],
2222
"cwd": "${workspaceFolder}"
2323
},

0 commit comments

Comments
 (0)