TokenizerBackedParser<TTokenizer,TSymbol,TSymbolType>.AcceptUntil Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
AcceptUntil(TSymbolType) |
This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Accepts token until a token of the given type is found. |
AcceptUntil(TSymbolType[]) |
This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Accepts token until a token of the given types is found. |
AcceptUntil(TSymbolType, TSymbolType) |
This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Accepts token until a token of the given type is found and it will backup so that the next token is of the given type. |
AcceptUntil(TSymbolType, TSymbolType, TSymbolType) |
This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Accepts the given tokens until a token of the given type is found. |
AcceptUntil(TSymbolType)
This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Accepts token until a token of the given type is found.
protected internal void AcceptUntil (TSymbolType type);
member this.AcceptUntil : 'SymbolType -> unit
Protected Friend Sub AcceptUntil (type As TSymbolType)
Parameters
- type
- TSymbolType
The type of the token.
Applies to
AcceptUntil(TSymbolType[])
This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Accepts token until a token of the given types is found.
protected internal void AcceptUntil (params TSymbolType[] types);
member this.AcceptUntil : 'SymbolType[] -> unit
Protected Friend Sub AcceptUntil (ParamArray types As TSymbolType())
Parameters
- types
- TSymbolType[]
The types of the token.
Applies to
AcceptUntil(TSymbolType, TSymbolType)
This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Accepts token until a token of the given type is found and it will backup so that the next token is of the given type.
protected internal void AcceptUntil (TSymbolType type1, TSymbolType type2);
member this.AcceptUntil : 'SymbolType * 'SymbolType -> unit
Protected Friend Sub AcceptUntil (type1 As TSymbolType, type2 As TSymbolType)
Parameters
- type1
- TSymbolType
The type of the first token.
- type2
- TSymbolType
The type of the second token.
Applies to
AcceptUntil(TSymbolType, TSymbolType, TSymbolType)
This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Accepts the given tokens until a token of the given type is found.
protected internal void AcceptUntil (TSymbolType type1, TSymbolType type2, TSymbolType type3);
member this.AcceptUntil : 'SymbolType * 'SymbolType * 'SymbolType -> unit
Protected Friend Sub AcceptUntil (type1 As TSymbolType, type2 As TSymbolType, type3 As TSymbolType)
Parameters
- type1
- TSymbolType
The type of the first token.
- type2
- TSymbolType
The type of the second token.
- type3
- TSymbolType
The type of the third token.