-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* add the error name and message to the stacktrace * implement Error.captureStackTrace * set DebugDisableOptimizedBytecode to true for tests * extract __createError function * test stacktrace line number in Error * add tests * update changelog
- Loading branch information
RoFlection Bot
committed
Sep 6, 2022
1 parent
3fb6943
commit 6481183
Showing
8 changed files
with
275 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
{ | ||
"version": "0.2.0", | ||
"configurations": [ | ||
{ | ||
"type": "roblox-lrdb", | ||
"request": "launch", | ||
"name": "Luau Tests", | ||
"program": "<PATH_TO_ROBLOX_CLI>", | ||
"args": [ | ||
"run", | ||
"--load.model", | ||
"test-model.project.json", | ||
"--debug.on", | ||
"--run", | ||
"bin/spec.lua", | ||
"--fastFlags.allOnLuau", | ||
"--fastFlags.overrides", | ||
"DebugDisableOptimizedBytecode=true", | ||
"--lua.globals=__DEV__=true" | ||
], | ||
"cwd": "${workspaceFolder}", | ||
"stopOnEntry": true | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
[tools] | ||
rotrieve = { source = "roblox/rotriever", version = "0.5.4" } | ||
rotrieve = { source = "roblox/rotriever", version = "0.5.5" } | ||
rojo = { source = "rojo-rbx/rojo", version = "7.2.0" } | ||
selene = { source = "Kampfkarren/selene", version = "0.20.0" } | ||
stylua = { source = "JohnnyMorganz/StyLua", version = "=0.14.2" } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters