Skip to content

Commit

Permalink
Bump to latest SourcePawn 1.12
Browse files Browse the repository at this point in the history
  • Loading branch information
psychonic committed Nov 30, 2024
1 parent 8690afc commit d5470df
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sourcepawn
Submodule sourcepawn updated 39 files
+0 −6 .github/workflows/ci.yml
+17 −3 README.md
+8 −1 compiler/array-helpers.cpp
+2 −2 compiler/code-generator.cpp
+3 −0 compiler/expressions.cpp
+1 −1 compiler/lexer.cpp
+1 −1 compiler/main.cpp
+2 −2 compiler/name-resolution.cpp
+7 −0 compiler/parser.cpp
+33 −5 compiler/semantics.cpp
+5 −0 compiler/semantics.h
+2 −0 tests/compile-only/fail-incomplete-property-block.sp
+1 −0 tests/compile-only/fail-incomplete-property-block.txt
+1 −0 tests/compile-only/fail-inherit-undeclared-methodmap.sp
+1 −0 tests/compile-only/fail-inherit-undeclared-methodmap.txt
+29 −0 tests/compile-only/fail-ref-compare-function-signature.sp
+4 −0 tests/compile-only/fail-ref-compare-function-signature.txt
+9 −0 tests/compile-only/fail-stock-array-unused.sp
+1 −0 tests/compile-only/fail-stock-array-unused.txt
+5 −0 tests/compile-only/fail-stock-var-unused.sp
+1 −0 tests/compile-only/fail-stock-var-unused.txt
+18 −0 tests/compile-only/ok-enum-struct-param-implicit-read.sp
+5 −0 tests/compile-only/ok-included-stock-array-unused.inc
+5 −0 tests/compile-only/ok-included-stock-array-unused.sp
+1 −0 tests/compile-only/ok-included-stock-var-unused.inc
+5 −0 tests/compile-only/ok-included-stock-var-unused.sp
+8 −0 tests/compile-only/ok-nested-preproc-if.sp
+7 −0 tests/compile-only/ok-static-used-by-stock.inc
+5 −0 tests/compile-only/ok-static-used-by-stock.sp
+14 −0 tests/compile-only/ok-this-as-non-const.sp
+20 −0 tests/enum-structs/return-enum-struct.out
+45 −0 tests/enum-structs/return-enum-struct.sp
+3 −0 tests/enum-structs/zero-fill.out
+21 −0 tests/enum-structs/zero-fill.sp
+1 −0 tests/regressions/return-static-array.out
+13 −0 tests/regressions/return-static-array.sp
+1 −0 tests/regressions/static-var-as-default-value.out
+10 −0 tests/regressions/static-var-as-default-value.sp
+4 −1 tests/testutil.py

0 comments on commit d5470df

Please sign in to comment.