parsley.token.descriptions.SymbolDesc
See theSymbolDesc companion object
final case class SymbolDesc(hardKeywords: Set[String], hardOperators: Set[String], caseSensitive: Boolean)
This class describes how symbols (textual literals in a BNF) should be processed lexically.
Value parameters
- caseSensitive
-
are the keywords case sensitive: when
false
,IF == if
. - hardKeywords
-
what keywords are always treated as keywords within the language.
- hardOperators
-
what operators are always treated as reserved operators within the language.
Attributes
- Since
-
4.0.0
- Companion
- object
- Source
- SymbolDesc.scala
- Graph
-
- Supertypes
Members list
In this article