#ifndef RASTER_RENDERER_PARSER_H #define RASTER_RENDERER_PARSER_H #include "lexer.h" #include "compiler.h" #include "syntax.h" namespace Slang { namespace Compiler { // Parse a source file into an existing translation unit void parseSourceFile( ProgramSyntaxNode* translationUnitSyntax, CompileOptions& options, TokenSpan const& tokens, DiagnosticSink* sink, String const& fileName, RefPtr const&outerScope); } } #endif