1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124
|
// Copyright (c) AlphaSierraPapa for the SharpDevelop Team (for details please see \doc\copyright.txt)
// This code is distributed under MIT X11 license (for details please see \doc\license.txt)
using System;
using System.Collections.Generic;
using System.Linq;
namespace ICSharpCode.NRefactory.VB.Ast
{
public abstract class LambdaExpression : Expression
{
public static readonly Role<VBModifierToken> ModifierRole = AttributedNode.ModifierRole;
public LambdaExpressionModifiers Modifiers {
get { return GetModifiers(this); }
set { SetModifiers(this, value); }
}
public AstNodeCollection<VBModifierToken> ModifierTokens {
get { return GetChildrenByRole (ModifierRole); }
}
internal static LambdaExpressionModifiers GetModifiers(AstNode node)
{
LambdaExpressionModifiers m = 0;
foreach (VBModifierToken t in node.GetChildrenByRole (ModifierRole)) {
m |= (LambdaExpressionModifiers)t.Modifier;
}
return m;
}
internal static void SetModifiers(AstNode node, LambdaExpressionModifiers newValue)
{
LambdaExpressionModifiers oldValue = GetModifiers(node);
AstNode insertionPos = null;
foreach (Modifiers m in VBModifierToken.AllModifiers) {
if ((m & (Modifiers)newValue) != 0) {
if ((m & (Modifiers)oldValue) == 0) {
// Modifier was added
var newToken = new VBModifierToken(TextLocation.Empty, m);
node.InsertChildAfter(insertionPos, newToken, ModifierRole);
insertionPos = newToken;
} else {
// Modifier already exists
insertionPos = node.GetChildrenByRole(ModifierRole).First(t => t.Modifier == m);
}
} else {
if ((m & (Modifiers)oldValue) != 0) {
// Modifier was removed
node.GetChildrenByRole (ModifierRole).First(t => t.Modifier == m).Remove();
}
}
}
}
public AstNodeCollection<ParameterDeclaration> Parameters {
get { return GetChildrenByRole(Roles.Parameter); }
}
}
public class SingleLineSubLambdaExpression : LambdaExpression
{
public static readonly Role<Statement> StatementRole = BlockStatement.StatementRole;
public Statement EmbeddedStatement {
get { return GetChildByRole(StatementRole); }
set { SetChildByRole(StatementRole, value); }
}
protected internal override bool DoMatch(AstNode other, ICSharpCode.NRefactory.PatternMatching.Match match)
{
throw new NotImplementedException();
}
public override S AcceptVisitor<T, S>(IAstVisitor<T, S> visitor, T data)
{
return visitor.VisitSingleLineSubLambdaExpression(this, data);
}
}
public class SingleLineFunctionLambdaExpression : LambdaExpression
{
public Expression EmbeddedExpression {
get { return GetChildByRole(Roles.Expression); }
set { SetChildByRole(Roles.Expression, value); }
}
protected internal override bool DoMatch(AstNode other, ICSharpCode.NRefactory.PatternMatching.Match match)
{
throw new NotImplementedException();
}
public override S AcceptVisitor<T, S>(IAstVisitor<T, S> visitor, T data)
{
return visitor.VisitSingleLineFunctionLambdaExpression(this, data);
}
}
public class MultiLineLambdaExpression : LambdaExpression
{
public bool IsSub { get; set; }
public BlockStatement Body {
get { return GetChildByRole(Roles.Body); }
set { SetChildByRole(Roles.Body, value); }
}
protected internal override bool DoMatch(AstNode other, ICSharpCode.NRefactory.PatternMatching.Match match)
{
throw new NotImplementedException();
}
public override S AcceptVisitor<T, S>(IAstVisitor<T, S> visitor, T data)
{
return visitor.VisitMultiLineLambdaExpression(this, data);
}
}
public enum LambdaExpressionModifiers
{
Async = Modifiers.Async,
Iterator = Modifiers.Iterator
}
}
|