Builds a token following a successful match. Note new objects should be created each time as error reporting information is later attached to tokens.

Namespace:  SingularSys.Jep.ConfigurableParser.Matchers
Assembly:  Jep (in Jep.dll) Version: 1.1.0.0 (1.0.0)

Syntax

C#
public abstract Token BuildToken(
	string s
)
Visual Basic (Declaration)
Public MustOverride Function BuildToken ( _
	s As String _
) As Token
Visual C++
public:
virtual Token^ BuildToken(
	String^ s
) abstract

Parameters

s
Type: System..::.String
String representing the completed matched token

Return Value

the appropriate type of token.

Implements

ITokenBuilder..::.BuildToken(String)

See Also