diff options
| author | Jay Kwak <82421531+jkwak-work@users.noreply.github.com> | 2024-10-25 15:59:17 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-10-25 15:59:17 -0700 |
| commit | d8969d87dcc9eea3f186a0c93c5e48d3d1659e05 (patch) | |
| tree | a7c17a8d8ce08bdd1551ba4815de809a4d1783f6 /tools/slang-test | |
| parent | 4bad669bbc5ec3ff77321f083c59cde87eb10229 (diff) | |
Replace stdlib with core-module on files and projects (#5411)
This commit renames the files and projects to prefer "core-module" over
"stdlib".
The directory name `source/slang-stdlib` needs to be renamed too, and
there will be another commit for it soon.
Diffstat (limited to 'tools/slang-test')
| -rw-r--r-- | tools/slang-test/parse-diagnostic-util.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tools/slang-test/parse-diagnostic-util.cpp b/tools/slang-test/parse-diagnostic-util.cpp index b0f13b4ee..f5b76a07e 100644 --- a/tools/slang-test/parse-diagnostic-util.cpp +++ b/tools/slang-test/parse-diagnostic-util.cpp @@ -449,17 +449,17 @@ static bool _isAtEnd(const UnownedStringSlice& text, const UnownedStringSlice& l SlangResult resB = ParseDiagnosticUtil::parseDiagnostics(b, diagsB); /* - TODO(JS): In the past we needed special handling of the stdlib, when - in some builds the path contains the stdlib. + TODO(JS): In the past we needed special handling of the core module, when + in some builds the path contains the core module. For now we don't seem to need this, this is for future reference, if there is an issue with needing to specially handle this. - static const UnownedStringSlice stdLibNames[] = + static const UnownedStringSlice coreModuleNames[] = { UnownedStringSlice::fromLiteral("core.meta.slang"), UnownedStringSlice::fromLiteral("hlsl.meta.slang"), - UnownedStringSlice::fromLiteral("slang-stdlib.cpp"), + UnownedStringSlice::fromLiteral("slang-core-module.cpp"), }; */ |
