Skip to content

Commit 2e2d5a1

Browse files
committed
Merge branch 'master' of github.com:EmmyLua/EmmyLuaDebugger
2 parents f9b837e + eb32629 commit 2e2d5a1

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

.github/workflows/build.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,10 @@ jobs:
2828
2929
shell: bash
3030
- name: Node.js
31-
uses: actions/setup-node@v3
31+
uses: actions/setup-node@v4
3232
with:
3333
node-version: 20.x
34-
- uses: actions/checkout@v3
34+
- uses: actions/checkout@v4
3535
- name: Build-windows
3636
if: startsWith(matrix.os, 'windows')
3737
run: |
@@ -74,7 +74,7 @@ jobs:
7474
7575
7676
- name: Upload
77-
uses: actions/upload-artifact@v3
77+
uses: actions/upload-artifact@v4
7878
with:
7979
name: ${{ matrix.platform }}
8080
path: ${{ github.workspace }}/artifact/bin
@@ -88,7 +88,7 @@ jobs:
8888
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
8989
steps:
9090
- name: Download
91-
uses: actions/download-artifact@v3
91+
uses: actions/download-artifact@v4
9292
- name: Display structure of downloaded files
9393
run: ls -R
9494
- name: zip win32-x64
@@ -131,7 +131,7 @@ jobs:
131131
directory: darwin-arm64
132132
path: emmy_core.dylib
133133
- name: Release
134-
uses: softprops/action-gh-release@v1
134+
uses: softprops/action-gh-release@v2
135135
if: startsWith(github.ref, 'refs/tags/')
136136
with:
137137
name: EmmyLuaDebugger

emmy_debugger/src/debugger/hook_state.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -98,6 +98,7 @@ void HookStateStepIn::ProcessHook(std::shared_ptr<Debugger> debugger, lua_State*
9898
UpdateStackLevel(debugger, L, ar);
9999
if (getDebugEvent(ar) == LUA_HOOKLINE)
100100
{
101+
lua_getinfo(L, "nSl", ar);
101102
auto currentLine = getDebugCurrentLine(ar);
102103
auto source = getDebugSource(ar);
103104
if(currentLine != line || file != source)

0 commit comments

Comments
 (0)