Ejemplo n.º 1
0
 public static ForgedOnce.TsLanguageServices.FullSyntaxTree.AstModel.StBinaryExpression WithOperatorToken(this ForgedOnce.TsLanguageServices.FullSyntaxTree.AstModel.StBinaryExpression subject, ForgedOnce.TsLanguageServices.FullSyntaxTree.AstModel.IStBinaryOperatorToken operatorToken)
 {
     subject.operatorToken = operatorToken;
     return(subject);
 }
 public StBinaryExpression(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.IStExpression left, ForgedOnce.TsLanguageServices.FullSyntaxTree.AstModel.IStBinaryOperatorToken operatorToken, ForgedOnce.TsLanguageServices.FullSyntaxTree.AstModel.IStExpression right) : base(flags, decorators, modifiers)
 {
     this.kind          = ForgedOnce.TsLanguageServices.FullSyntaxTree.TransportModel.SyntaxKind.BinaryExpression;
     this.left          = left;
     this.operatorToken = operatorToken;
     this.right         = right;
 }