-
Notifications
You must be signed in to change notification settings - Fork 24
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
0.8.0 #328
Merged
Merged
0.8.0 #328
Conversation
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
Sainan
force-pushed
the
0.8.0
branch
2 times, most recently
from
August 24, 2023 05:24
fda68a0
to
0909757
Compare
Sainan
force-pushed
the
0.8.0
branch
4 times, most recently
from
August 25, 2023 16:55
1606383
to
68127ae
Compare
Sainan
force-pushed
the
0.8.0
branch
4 times, most recently
from
September 7, 2023 17:21
9878973
to
9b6b2a9
Compare
Sainan
force-pushed
the
0.8.0
branch
3 times, most recently
from
September 10, 2023 12:15
9197d1d
to
1d6d1ad
Compare
well-in-that-case
force-pushed
the
0.8.0
branch
3 times, most recently
from
October 5, 2023 02:41
690d10a
to
b2285af
Compare
Sainan
force-pushed
the
0.8.0
branch
6 times, most recently
from
November 17, 2023 08:30
64cb196
to
995dd2a
Compare
well-in-that-case
force-pushed
the
0.8.0
branch
from
November 17, 2023 18:59
ecfa777
to
f5c7c23
Compare
Sainan
force-pushed
the
0.8.0
branch
5 times, most recently
from
November 25, 2023 15:24
528d1cf
to
25d262a
Compare
local info = debug.getinfo(0) for i=1, math.huge do local newInfo = debug.getinfo(i) if not newInfo then info.func() print("you have done little sorcery UwU") return end info = newInfo end
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
case 1, 2: ...
<=>
)nilable_inst?:method()
,inst:nilable_method?()
,nilable_inst?:nilable_method?()
local ... <const> [= ...]
, enabled withpluto_use const
.pluto_use "VERSION+"
{ __index = _G.table }
).export
now works in all scopes, not just the main bodyin
operator on tables to check values instead of keys\{
is now a valid escape sequence (for interpolated strings) (may be backported to 0.7.x?)Warnings:
global-shadow
warnings which is likevar-shadow
but for globals that are especially vulnerable to obscure shadowing bugs (to prevent excessive annoyance).arg
,string
, andtable
. Integrators can extend this viaPLUTO_EXTENDED_COMMON_GLOBAL_NAMES
local table = table
)var-shadow
has been improved to check more enclosing scopesunreachable-code
non-portable-code
,non-portable-bytecode
, andnon-portable-name
warning types@pluto_warnings error-all
Standard library:
_PSOUP
MAX_CAPTURES
require
require("pluto:libname")
to explicitly request pluto libraries if ever needed (normal still works for pluto libraries, we just check for local files first).For integrators:
PLUTO_NO_FILESYSTEM
- disables all filesystem access (for sandboxing).PLUTO_WARN_NON_PORTABLE_CODE
PLUTO_WARN_NON_PORTABLE_BYTECODE
PLUTO_WARN_NON_PORTABLE_NAME
PLUTO_NO_BINARIES
- disables all dll/so/c module loading (for sandboxing)luaG_addsrcinfo