pip_services3_expressions.mustache.parsers.MustacheToken module

class pip_services3_expressions.mustache.parsers.MustacheToken.MustacheToken(type: pip_services3_expressions.mustache.parsers.MustacheTokenType.MustacheTokenType, value: str, line: int, column: int)

Bases: object

Defines a mustache token holder.

property column

The column number where the token is.

property line

The line number where the token is.

property tokens

Gets a list of subtokens is this token a section.

property type

Gets the token value or variable name.

property value

Gets the token value or variable name.