summaryrefslogtreecommitdiff
path: root/source/slang/syntax-visitors.h
diff options
context:
space:
mode:
Diffstat (limited to 'source/slang/syntax-visitors.h')
-rw-r--r--source/slang/syntax-visitors.h36
1 files changed, 0 insertions, 36 deletions
diff --git a/source/slang/syntax-visitors.h b/source/slang/syntax-visitors.h
deleted file mode 100644
index 3fca323e8..000000000
--- a/source/slang/syntax-visitors.h
+++ /dev/null
@@ -1,36 +0,0 @@
-#ifndef RASTER_RENDERER_SYNTAX_PRINTER_H
-#define RASTER_RENDERER_SYNTAX_PRINTER_H
-
-#include "diagnostics.h"
-#include "syntax.h"
-
-namespace Slang
-{
- class DiagnosticSink;
- class EntryPoint;
- class Linkage;
- class Module;
- class ShaderCompiler;
- class ShaderLinkInfo;
- class ShaderSymbol;
-
- class TranslationUnitRequest;
-
- void checkTranslationUnit(
- TranslationUnitRequest* translationUnit);
-
- // Look for a module that matches the given name:
- // either one we've loaded already, or one we
- // can find vai the search paths available to us.
- //
- // Needed by import declaration checking.
- //
- // TODO: need a better location to declare this.
- RefPtr<Module> findOrImportModule(
- Linkage* linkage,
- Name* name,
- SourceLoc const& loc,
- DiagnosticSink* sink);
-}
-
-#endif \ No newline at end of file