diff options
| author | Tim Foley <tim.foley.is@gmail.com> | 2017-08-09 11:20:09 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-08-09 11:20:09 -0700 |
| commit | 6e4830f4d74adef0a47c6503d84dc114240fafa3 (patch) | |
| tree | 4f549da8c05be186f12442565389d9f3df44c6d7 /source/slang/lower.h | |
| parent | 8e4c0c35d6c2d0fd754b713441c2eee8f13f87b2 (diff) | |
| parent | 695c2700de54a5fec72ce7214c137a1dc3a02d7b (diff) | |
Merge pull request #155 from tfoleyNV/renaming
Major naming overhaul:
Diffstat (limited to 'source/slang/lower.h')
| -rw-r--r-- | source/slang/lower.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source/slang/lower.h b/source/slang/lower.h index 688c1df8f..919260af3 100644 --- a/source/slang/lower.h +++ b/source/slang/lower.h @@ -22,12 +22,12 @@ namespace Slang struct LoweredEntryPoint { // The actual lowered entry point - RefPtr<FunctionSyntaxNode> entryPoint; + RefPtr<FuncDecl> entryPoint; // The generated program AST that // contains the entry point and any // other declarations it uses - RefPtr<ProgramSyntaxNode> program; + RefPtr<ModuleDecl> program; }; // Emit code for a single entry point, based on |
