コード例 #1
0
ファイル: FunctionAnalyser.cs プロジェクト: iwatakeshi/Iodine
 public void Accept(CodeBlock scope)
 {
     symbolTable.BeginScope ();
     scope.VisitChildren (this);
     symbolTable.EndScope ();
 }
コード例 #2
0
ファイル: RootAnalyser.cs プロジェクト: iwatakeshi/Iodine
 public void Accept(CodeBlock scope)
 {
     scope.VisitChildren (this);
 }