Skip to content

TParser.CheckTokenSymbol

Checks whether the token equals the given symbol

Declaration

Source position: classesh.inc line 1815

public 
  procedure CheckTokenSymbol(const S: string);

Description

CheckTokenSymbol performs a case-insensitive comparison of current token value with S.

Current token must be of type toSymbol , otherwise an EParserError exception is raised.

Errors

If the comparison fails, or current token isn't a symbol, an EParserError exception is raised.

See also

Name Description
toSymbol Value returned by TParser.Token when a symbol was found in the input stream.
TParser.TokenSymbolIs Returns True if the token equals the given symbol.