Ejemplo n.º 1
0
 public StImportClause(ForgedOnce.TsLanguageServices.FullSyntaxTree.TransportModel.NodeFlags flags, System.Collections.Generic.List <ForgedOnce.TsLanguageServices.FullSyntaxTree.AstModel.StDecorator> decorators, System.Collections.Generic.List <ForgedOnce.TsLanguageServices.FullSyntaxTree.AstModel.IStModifier> modifiers, ForgedOnce.TsLanguageServices.FullSyntaxTree.AstModel.StIdentifier name, System.Boolean isTypeOnly, ForgedOnce.TsLanguageServices.FullSyntaxTree.AstModel.IStNamedImportBindings namedBindings) : base(flags, decorators, modifiers)
 {
     this.kind          = ForgedOnce.TsLanguageServices.FullSyntaxTree.TransportModel.SyntaxKind.ImportClause;
     this.name          = name;
     this.isTypeOnly    = isTypeOnly;
     this.namedBindings = namedBindings;
 }
Ejemplo n.º 2
0
 public static ForgedOnce.TsLanguageServices.FullSyntaxTree.AstModel.StImportClause WithNamedBindings(this ForgedOnce.TsLanguageServices.FullSyntaxTree.AstModel.StImportClause subject, ForgedOnce.TsLanguageServices.FullSyntaxTree.AstModel.IStNamedImportBindings namedBindings)
 {
     subject.namedBindings = namedBindings;
     return(subject);
 }