pip_services3_expressions.calculator.parsers.ExpressionToken module

class pip_services3_expressions.calculator.parsers.ExpressionToken.ExpressionToken(type: pip_services3_expressions.calculator.parsers.ExpressionTokenType.ExpressionTokenType, value: pip_services3_expressions.variants.Variant.Variant, line: int, column: int)

Bases: object

Defines an expression token holder.

property column

The column number where the token is.

property line

The line number where the token is.

property type

The type of this token.

property value