public ExpressionKindTransformation(SyntaxTreeTransformation <TransformationState> parent) : base(parent)
 {
 }
 public NamespaceTransformation(SyntaxTreeTransformation <TransformationState> parent) : base(parent)
 {
 }
 public TypeTransformation(SyntaxTreeTransformation <TransformationState> parent) : base(parent)
 {
 }
 public QirStatementKindTransformation(SyntaxTreeTransformation <GenerationContext> parentTransformation, TransformationOptions options)
     : base(parentTransformation, options)
 {
 }
 public TypeTransformation(SyntaxTreeTransformation <TransformationState> parent) : base(parent, TransformationOptions.NoRebuild)
 {
 }
Beispiel #6
0
 public QirNamespaceTransformation(SyntaxTreeTransformation <GenerationContext> parentTransformation)
     : base(parentTransformation)
 {
 }
 public ExpressionWalker(SyntaxTreeTransformation <TState> parent) : base(parent, TransformationOptions.NoRebuild)
 {
 }
Beispiel #8
0
 public ExpressionTransformation(SyntaxTreeTransformation <TransformationsState> parent)
     : base(parent, TransformationOptions.Default)
 {
 }
Beispiel #9
0
 public QirNamespaceTransformation(SyntaxTreeTransformation <GenerationContext> parentTransformation, TransformationOptions options)
     : base(parentTransformation, options)
 {
 }
Beispiel #10
0
 public IgnoreOuterBlockInConjugations(SyntaxTreeTransformation <T> parent, TransformationOptions?options = null)
     : base(parent, options ?? TransformationOptions.Default)
 {
 }
Beispiel #11
0
 public StatementTransformation(SyntaxTreeTransformation <TransformationsState> parent)
     : base(parent)
 {
 }
Beispiel #12
0
 public AddVariableDeclarations(SyntaxTreeTransformation <T> parent, params LocalVariableDeclaration <string>[] addedVars)
     : base(parent) =>
     this.addedVariableDeclarations = addedVars;
 public AddVariableDeclarations(SyntaxTreeTransformation <T> parent, params LocalVariableDeclaration <NonNullable <string> >[] addedVars)
     : base(parent) =>
     this.addedVariableDeclarations = addedVars ?? throw new ArgumentNullException(nameof(addedVars));
 public ExpressionTransformation(SyntaxTreeTransformation <T> parent)
     : base(parent)
 {
 }
 public StatementKindTransformation(SyntaxTreeTransformation <T> parent)
     : base(parent)
 {
 }
 public NamespaceWalker(SyntaxTreeTransformation <TransformationState> parent) : base(parent, TransformationOptions.NoRebuild)
 {
 }