Skip to content

Commit

Permalink
Merge pull request #305 from MikePopoloski/dependabot/submodules/slan…
Browse files Browse the repository at this point in the history
…g-e342f51

build(deps): bump slang from `972b19e` to `e342f51`
  • Loading branch information
github-actions[bot] committed May 20, 2024
2 parents d5a8bda + b6bec11 commit a229b5b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion slang
Submodule slang updated 43 files
+37 −0 CHANGELOG.md
+2 −1 bindings/python/ASTBindings.cpp
+2 −1 bindings/python/SymbolBindings.cpp
+5 −2 include/slang/ast/ASTContext.h
+2 −1 include/slang/ast/Expression.h
+7 −4 include/slang/ast/Lookup.h
+5 −0 include/slang/ast/Scope.h
+3 −0 include/slang/ast/symbols/CoverSymbols.h
+1 −1 include/slang/ast/symbols/MemberSymbols.h
+3 −0 include/slang/parsing/ParserBase.h
+2 −0 include/slang/parsing/Preprocessor.h
+24 −8 scripts/diagnostics.txt
+8 −1 scripts/syntax.txt
+45 −0 scripts/warning_docs.txt
+15 −0 source/ast/ElabVisitors.h
+3 −3 source/ast/Expression.cpp
+13 −1 source/ast/Lookup.cpp
+11 −0 source/ast/Scope.cpp
+3 −3 source/ast/builtins/GateTypes.cpp
+151 −0 source/ast/builtins/NonConstFuncs.cpp
+6 −0 source/ast/builtins/QueryFuncs.cpp
+116 −2 source/ast/builtins/SystemTasks.cpp
+9 −6 source/ast/expressions/AssignmentExpressions.cpp
+11 −5 source/ast/expressions/MiscExpressions.cpp
+4 −1 source/ast/symbols/ClassSymbols.cpp
+64 −34 source/ast/symbols/CoverSymbols.cpp
+48 −6 source/ast/symbols/InstanceSymbols.cpp
+4 −5 source/ast/symbols/SpecifySymbols.cpp
+4 −3 source/ast/types/DeclaredType.cpp
+1 −0 source/driver/Driver.cpp
+7 −1 source/parsing/LexerFacts.cpp
+4 −1 source/parsing/ParserBase.cpp
+1 −2 source/parsing/Parser_expressions.cpp
+12 −4 source/parsing/Parser_members.cpp
+55 −8 source/parsing/Preprocessor.cpp
+75 −2 tests/unittests/ast/CoverTests.cpp
+4 −3 tests/unittests/ast/MemberTests.cpp
+48 −0 tests/unittests/ast/PrimitiveTests.cpp
+108 −4 tests/unittests/ast/SystemFuncTests.cpp
+24 −0 tests/unittests/ast/WarningTests.cpp
+24 −7 tests/unittests/parsing/MemberParsingTests.cpp
+46 −4 tests/unittests/parsing/PreprocessorTests.cpp
+18 −5 tools/hier/hier.cpp

0 comments on commit a229b5b

Please sign in to comment.