Skip to content

Commit

Permalink
Bump sourcepawn version to fix some regressions
Browse files Browse the repository at this point in the history
  • Loading branch information
psychonic committed Oct 20, 2024
1 parent 3bc55e6 commit 0a6fa10
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sourcepawn
Submodule sourcepawn updated 56 files
+1 −1 AMBuildScript
+74 −82 compiler/array-helpers.cpp
+2 −1 compiler/array-helpers.h
+95 −109 compiler/assembler.cpp
+0 −5 compiler/assembler.h
+7 −1 compiler/ast-types.h
+209 −193 compiler/code-generator.cpp
+16 −15 compiler/code-generator.h
+2 −2 compiler/compile-context.cpp
+11 −10 compiler/compile-context.h
+22 −32 compiler/errors.cpp
+19 −27 compiler/errors.h
+26 −32 compiler/expressions.cpp
+2 −2 compiler/label.h
+18 −9 compiler/lexer.cpp
+21 −24 compiler/main.cpp
+3 −0 compiler/messages.h
+239 −388 compiler/name-resolution.cpp
+186 −4 compiler/parse-node.cpp
+335 −102 compiler/parse-node.h
+52 −51 compiler/parser.cpp
+6 −6 compiler/parser.h
+4 −39 compiler/sc.h
+10 −8 compiler/scopes.cpp
+9 −7 compiler/scopes.h
+7 −77 compiler/sctracker.cpp
+1 −57 compiler/sctracker.h
+499 −403 compiler/semantics.cpp
+14 −12 compiler/semantics.h
+14 −10 compiler/smx-assembly-buffer.h
+39 −266 compiler/symbols.cpp
+15 −241 compiler/symbols.h
+0 −16 compiler/type-checker.cpp
+0 −1 compiler/type-checker.h
+22 −27 compiler/types.cpp
+39 −42 compiler/types.h
+84 −0 compiler/value-inl.h
+3 −3 tests/basic/view-as-to-array-2.sp
+3 −0 tests/compile-only/fail-array-almost-too-big-2.sp
+1 −0 tests/compile-only/fail-array-almost-too-big-2.txt
+1 −1 tests/compile-only/fail-array-almost-too-big.sp
+13 −0 tests/compile-only/fail-array-extra-indices.sp
+3 −0 tests/compile-only/fail-array-extra-indices.txt
+1 −1 tests/compile-only/fail-assign-is-not-usage.txt
+10 −0 tests/compile-only/fail-bad-scope-resolution-2.sp
+1 −0 tests/compile-only/fail-bad-scope-resolution-2.txt
+23 −0 tests/compile-only/fail-property-rvalue-no-getter.sp
+1 −0 tests/compile-only/fail-property-rvalue-no-getter.txt
+1 −1 tests/compile-only/fail-undeclared-static-methodmap-call.txt
+14 −0 tests/compile-only/ok-reference-implicit-global-before-definition.sp
+1 −0 tests/regressions/float-literal-with-exponent.out
+6 −0 tests/regressions/float-literal-with-exponent.sp
+3 −0 tests/regressions/lex-hex-in-string.out
+8 −0 tests/regressions/lex-hex-in-string.sp
+1 −0 tests/regressions/stringize-macro-argument.out
+9 −0 tests/regressions/stringize-macro-argument.sp

0 comments on commit 0a6fa10

Please sign in to comment.