From 695c2700de54a5fec72ce7214c137a1dc3a02d7b Mon Sep 17 00:00:00 2001 From: Tim Foley Date: Wed, 9 Aug 2017 10:13:40 -0700 Subject: Major naming overhaul: - `ExpressionSyntaxNode` becomes `Expr` - `StatementSyntaxNode` becomes `Stmt` - `StructSyntaxNode` becomes `StructDecl` - `ProgramSyntaxNode` becomes `ModuleDecl` - `ExpressionType` becomes `Type` - Existing fields names `Type` become `type` - There might be some collateral damage here if there were, e.g., `enum`s named `Type`, but I can live with that for now and fix those up as a I see them --- source/slang/syntax-visitors.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source/slang/syntax-visitors.h') diff --git a/source/slang/syntax-visitors.h b/source/slang/syntax-visitors.h index 4ccc7fa0b..f2c080a57 100644 --- a/source/slang/syntax-visitors.h +++ b/source/slang/syntax-visitors.h @@ -23,7 +23,7 @@ namespace Slang // Needed by import declaration checking. // // TODO: need a better location to declare this. - RefPtr findOrImportModule( + RefPtr findOrImportModule( CompileRequest* request, String const& name, CodePosition const& loc); -- cgit v1.2.3