Skip to content

Commit

Permalink
build(deps): bump third_party/tools/slang from 652a9ab to 98c2035
Browse files Browse the repository at this point in the history
Bumps [third_party/tools/slang](https://github.com/MikePopoloski/slang) from `652a9ab` to `98c2035`.
- [Release notes](https://github.com/MikePopoloski/slang/releases)
- [Commits](MikePopoloski/slang@652a9ab...98c2035)

---
updated-dependencies:
- dependency-name: third_party/tools/slang
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <[email protected]>
  • Loading branch information
dependabot[bot] authored Jan 14, 2025
1 parent cbe02cf commit 2f41707
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion third_party/tools/slang
Submodule slang updated 40 files
+1 −1 .pre-commit-config.yaml
+15 −0 CHANGELOG.md
+1 −1 conanfile.py
+5 −0 docs/command-line-ref.dox
+1 −1 external/CMakeLists.txt
+7 −0 include/slang/ast/ASTSerializer.h
+13 −1 include/slang/ast/Expression.h
+0 −11 include/slang/ast/expressions/ConversionExpression.h
+35 −0 include/slang/ast/types/AllTypes.h
+1 −1 include/slang/parsing/ParserBase.h
+3 −0 include/slang/syntax/SyntaxFacts.h
+22 −6 source/ast/ASTSerializer.cpp
+8 −9 source/ast/Expression.cpp
+25 −4 source/ast/expressions/ConversionExpression.cpp
+5 −2 source/ast/expressions/OperatorExpressions.cpp
+28 −20 source/ast/symbols/BlockSymbols.cpp
+49 −0 source/ast/types/AllTypes.cpp
+1 −0 source/ast/types/Type.cpp
+4 −0 source/numeric/ConstantValue.cpp
+1 −1 source/parsing/Parser.cpp
+4 −2 source/parsing/Parser_members.cpp
+11 −0 source/syntax/SyntaxFacts.cpp
+1 −1 tests/regression/CMakeLists.txt
+24 −0 tests/unittests/ast/EvalTests.cpp
+34 −0 tests/unittests/ast/ExpressionTests.cpp
+2 −2 tests/unittests/ast/HierarchyTests.cpp
+2 −2 tests/unittests/ast/MemberTests.cpp
+1 −1 tests/unittests/ast/PortTests.cpp
+274 −17 tests/unittests/ast/SerializerTests.cpp
+0 −3 tests/unittests/parsing/DiagnosticTests.cpp
+19 −3 tests/unittests/parsing/MemberParsingTests.cpp
+1 −1 tests/unittests/parsing/VisitorTests.cpp
+11 −3 tools/driver/slang_main.cpp
+11 −9 tools/tidy/README.md
+8 −0 tools/tidy/include/TidyConfig.h
+2 −0 tools/tidy/src/TidyConfig.cpp
+23 −0 tools/tidy/src/TidyConfigParser.cpp
+5 −1 tools/tidy/src/synthesis/UnusedSensitiveSignal.cpp
+2 −0 tools/tidy/tests/TidyConfigParserTest.cpp
+75 −0 tools/tidy/tests/UnusedSensitiveSignalTest.cpp

0 comments on commit 2f41707

Please sign in to comment.