Пример #1
0
 void AliasImportsClause(Role role)
 {
     var result = new AliasImportsClause(); NodeStart(result);
     AstType alias;
     Identifier();
     result.Name = new Identifier (TextTokenType.Text, t.val, t.Location);
     Expect(20);
     TypeName(out alias);
     result.Alias = alias;
     NodeEnd(result, role);
 }
Пример #2
0
        void AliasImportsClause(Role role)
        {
            var     result = new AliasImportsClause(); NodeStart(result);
            AstType alias;

            Identifier();
            result.Name = new Identifier (TextTokenType.Text, t.val, t.Location);
            Expect(20);
            TypeName(out alias);
            result.Alias = alias;
            NodeEnd(result, role);
        }
Пример #3
0
 public object VisitAliasImportsClause(AliasImportsClause aliasImportsClause, object data)
 {
     throw new NotImplementedException();
 }