Esempio n. 1
0
 internal void EnterScope(TypeDefinitionAst typeDefinition)
 {
     var scope = new Scope(typeDefinition);
     _scopes.Add(scope);
     AddTypesInScope(typeDefinition);
 }
Esempio n. 2
0
 internal void EnterScope(IParameterMetadataProvider ast, ScopeType scopeType)
 {
     var scope = new Scope(ast, scopeType);
     _scopes.Add(scope);
     AddTypesInScope((Ast)ast);
 }