summaryrefslogtreecommitdiff
path: root/source/slang/slang.vcxproj
diff options
context:
space:
mode:
authorTim Foley <tfoleyNV@users.noreply.github.com>2019-10-25 14:19:56 -0700
committerGitHub <noreply@github.com>2019-10-25 14:19:56 -0700
commitc886ca811975e91cedca898a561ff65a5663272d (patch)
tree43dbae0f34972f293144dde9edaadef413462508 /source/slang/slang.vcxproj
parent7cf9b65c3836cdc17e6761bfd76383564ff0ec9d (diff)
Refactor semantic checking code into more files (#1097)
The semantic checking logic was all inside `slang-check.cpp` and as a result this was a monster file that was extremely hard to follow. This change splits `slang-check.cpp` into several smaller files, although some of the resulting files are still quite large. This change attempts to be a copy-paste job as much as possible and does *not* perform any cleanup on naming, structure, duplication, etc. in the code it deal with. No function bodies or signatures have been touched.
Diffstat (limited to 'source/slang/slang.vcxproj')
-rw-r--r--source/slang/slang.vcxproj12
1 files changed, 11 insertions, 1 deletions
diff --git a/source/slang/slang.vcxproj b/source/slang/slang.vcxproj
index cedbde34f..46681bb6e 100644
--- a/source/slang/slang.vcxproj
+++ b/source/slang/slang.vcxproj
@@ -174,6 +174,7 @@
<ClInclude Include="core.meta.slang.h" />
<ClInclude Include="glsl.meta.slang.h" />
<ClInclude Include="hlsl.meta.slang.h" />
+ <ClInclude Include="slang-check-impl.h" />
<ClInclude Include="slang-check.h" />
<ClInclude Include="slang-compiler.h" />
<ClInclude Include="slang-decl-defs.h" />
@@ -233,7 +234,6 @@
<ClInclude Include="slang-stmt-defs.h" />
<ClInclude Include="slang-syntax-base-defs.h" />
<ClInclude Include="slang-syntax-defs.h" />
- <ClInclude Include="slang-syntax-visitors.h" />
<ClInclude Include="slang-syntax.h" />
<ClInclude Include="slang-token-defs.h" />
<ClInclude Include="slang-token.h" />
@@ -244,6 +244,16 @@
<ClInclude Include="slang-visitor.h" />
</ItemGroup>
<ItemGroup>
+ <ClCompile Include="slang-check-conformance.cpp" />
+ <ClCompile Include="slang-check-constraint.cpp" />
+ <ClCompile Include="slang-check-conversion.cpp" />
+ <ClCompile Include="slang-check-decl.cpp" />
+ <ClCompile Include="slang-check-expr.cpp" />
+ <ClCompile Include="slang-check-modifier.cpp" />
+ <ClCompile Include="slang-check-overload.cpp" />
+ <ClCompile Include="slang-check-shader.cpp" />
+ <ClCompile Include="slang-check-stmt.cpp" />
+ <ClCompile Include="slang-check-type.cpp" />
<ClCompile Include="slang-check.cpp" />
<ClCompile Include="slang-compiler.cpp" />
<ClCompile Include="slang-diagnostics.cpp" />