Skip to content

Commit

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

build(deps): bump slang from `47010bd` to `de7c88b`
  • Loading branch information
github-actions[bot] authored Apr 29, 2024
2 parents c37ab7a + 7cd979a commit 24e83af
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion slang
Submodule slang updated 74 files
+13 −11 bindings/CMakeLists.txt
+0 −434 bindings/python/ASTBindings.cpp
+271 −0 bindings/python/ExpressionBindings.cpp
+192 −0 bindings/python/StatementBindings.cpp
+3 −4 bindings/python/SymbolBindings.cpp
+2 −0 bindings/python/TypeBindings.cpp
+12 −2 bindings/python/pyslang.cpp
+1 −1 conanfile.py
+1 −1 external/CMakeLists.txt
+40 −43 include/slang/ast/ASTContext.h
+2 −2 include/slang/ast/Bitstream.h
+1 −0 include/slang/ast/Compilation.h
+11 −7 include/slang/ast/Expression.h
+4 −0 include/slang/ast/SystemSubroutine.h
+3 −3 include/slang/ast/expressions/AssignmentExpressions.h
+5 −1 include/slang/ast/expressions/CallExpression.h
+1 −1 include/slang/ast/expressions/LiteralExpressions.h
+1 −1 include/slang/ast/expressions/MiscExpressions.h
+5 −5 include/slang/ast/expressions/OperatorExpressions.h
+5 −4 include/slang/ast/symbols/CompilationUnitSymbols.h
+6 −1 include/slang/ast/symbols/InstanceSymbols.h
+3 −1 include/slang/ast/symbols/ParameterSymbols.h
+2 −0 include/slang/ast/symbols/VariableSymbols.h
+10 −0 include/slang/ast/types/Type.h
+4 −0 include/slang/diagnostics/Diagnostics.h
+1 −1 include/slang/numeric/SVInt.h
+2 −2 include/slang/text/SourceLocation.h
+3 −0 include/slang/util/Hash.h
+4 −1 scripts/diagnostics.txt
+26 −15 scripts/syntax_gen.py
+35 −0 scripts/warning_docs.txt
+8 −6 source/ast/Bitstream.cpp
+139 −134 source/ast/Compilation.cpp
+19 −5 source/ast/ElabVisitors.h
+45 −31 source/ast/Expression.cpp
+1 −3 source/ast/Patterns.cpp
+1 −1 source/ast/Scope.cpp
+3 −3 source/ast/Statements.cpp
+8 −29 source/ast/Symbol.cpp
+4 −0 source/ast/SystemSubroutine.cpp
+13 −1 source/ast/builtins/QueryFuncs.cpp
+87 −125 source/ast/expressions/AssignmentExpressions.cpp
+1 −1 source/ast/expressions/CallExpression.cpp
+2 −1 source/ast/expressions/LiteralExpressions.cpp
+4 −4 source/ast/expressions/MiscExpressions.cpp
+35 −28 source/ast/expressions/OperatorExpressions.cpp
+7 −5 source/ast/expressions/SelectExpressions.cpp
+1 −1 source/ast/symbols/BlockSymbols.cpp
+4 −9 source/ast/symbols/CoverSymbols.cpp
+6 −0 source/ast/symbols/ParameterBuilder.cpp
+31 −9 source/ast/symbols/ParameterSymbols.cpp
+5 −6 source/ast/symbols/PortSymbols.cpp
+1 −1 source/ast/symbols/SubroutineSymbols.cpp
+111 −0 source/ast/symbols/VariableSymbols.cpp
+39 −27 source/ast/types/AllTypes.cpp
+8 −37 source/ast/types/DeclaredType.cpp
+42 −0 source/ast/types/Type.cpp
+1 −1 source/ast/types/TypePrinter.cpp
+1 −1 source/diagnostics/DiagnosticEngine.cpp
+12 −0 source/diagnostics/Diagnostics.cpp
+1 −0 tests/unittests/CMakeLists.txt
+3 −3 tests/unittests/ast/ClassTests.cpp
+36 −139 tests/unittests/ast/ExpressionTests.cpp
+0 −650 tests/unittests/ast/HierarchyTests.cpp
+5 −5 tests/unittests/ast/InterfaceTests.cpp
+21 −15 tests/unittests/ast/LookupTests.cpp
+20 −342 tests/unittests/ast/MemberTests.cpp
+1,168 −0 tests/unittests/ast/ParameterTests.cpp
+2 −2 tests/unittests/ast/PortTests.cpp
+36 −3 tests/unittests/ast/SystemFuncTests.cpp
+0 −10 tests/unittests/ast/TypeTests.cpp
+58 −4 tests/unittests/ast/WarningTests.cpp
+4 −4 tests/unittests/parsing/DiagnosticTests.cpp
+2 −2 tools/hier/hier.cpp

0 comments on commit 24e83af

Please sign in to comment.