|
|
@ -72,7 +72,10 @@ namespace ICSharpCode.NRefactory.CSharp |
|
|
|
new KeyValuePair<Modifiers, int>(Modifiers.Volatile, "volatile".Length), |
|
|
|
new KeyValuePair<Modifiers, int>(Modifiers.Volatile, "volatile".Length), |
|
|
|
new KeyValuePair<Modifiers, int>(Modifiers.Extern, "extern".Length), |
|
|
|
new KeyValuePair<Modifiers, int>(Modifiers.Extern, "extern".Length), |
|
|
|
new KeyValuePair<Modifiers, int>(Modifiers.Partial, "partial".Length), |
|
|
|
new KeyValuePair<Modifiers, int>(Modifiers.Partial, "partial".Length), |
|
|
|
new KeyValuePair<Modifiers, int>(Modifiers.Const, "const".Length) |
|
|
|
new KeyValuePair<Modifiers, int>(Modifiers.Const, "const".Length), |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// even though it's used for patterns only, it needs to be in this table to be usable in the AST
|
|
|
|
|
|
|
|
new KeyValuePair<Modifiers, int>(Modifiers.Any, "any".Length) |
|
|
|
}; |
|
|
|
}; |
|
|
|
|
|
|
|
|
|
|
|
public static IEnumerable<Modifiers> AllModifiers { |
|
|
|
public static IEnumerable<Modifiers> AllModifiers { |
|
|
|