final class LocalTraversalExtGen[NodeType <: Local] extends AnyVal
Traversal steps for Local
- Alphabetic
- By Inheritance
- LocalTraversalExtGen
- AnyVal
- Any
- Hide All
- Show All
- Public
- Protected
Instance Constructors
- new LocalTraversalExtGen(traversal: IterableOnce[NodeType])
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- Any
- final def ##: Int
- Definition Classes
- Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- Any
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def closureBindingId(patterns: String*): Traversal[NodeType]
Traverse to nodes where the closureBindingId matches at least one of the regular expressions in
values
- def closureBindingId(pattern: String): Traversal[NodeType]
Traverse to nodes where the closureBindingId matches the regular expression
value
- def closureBindingId: Traversal[String]
Traverse to closureBindingId property
- def closureBindingIdExact(values: String*): Traversal[NodeType]
Traverse to nodes where closureBindingId matches one of the elements in
values
exactly. - def closureBindingIdExact(value: String): Traversal[NodeType]
Traverse to nodes where closureBindingId matches
value
exactly. - def closureBindingIdNot(patterns: String*): Traversal[NodeType]
Traverse to nodes where closureBindingId does not match any of the regular expressions in
values
. - def closureBindingIdNot(pattern: String): Traversal[NodeType]
Traverse to nodes where closureBindingId does not match the regular expression
value
. - def code(patterns: String*): Traversal[NodeType]
Traverse to nodes where the code matches at least one of the regular expressions in
values
- def code(pattern: String): Traversal[NodeType]
Traverse to nodes where the code matches the regular expression
value
- def code: Traversal[String]
Traverse to code property
- def codeExact(values: String*): Traversal[NodeType]
Traverse to nodes where code matches one of the elements in
values
exactly. - def codeExact(value: String): Traversal[NodeType]
Traverse to nodes where code matches
value
exactly. - def codeNot(patterns: String*): Traversal[NodeType]
Traverse to nodes where code does not match any of the regular expressions in
values
. - def codeNot(pattern: String): Traversal[NodeType]
Traverse to nodes where code does not match the regular expression
value
. - def columnNumber(values: Integer*): Traversal[NodeType]
Traverse to nodes where the columnNumber equals at least one of the given
values
- def columnNumber(value: Integer): Traversal[NodeType]
Traverse to nodes where the columnNumber equals the given
value
- def columnNumber: Traversal[Integer]
Traverse to columnNumber property
- def columnNumberGt(value: Integer): Traversal[NodeType]
Traverse to nodes where the columnNumber is greater than the given
value
- def columnNumberGte(value: Integer): Traversal[NodeType]
Traverse to nodes where the columnNumber is greater than or equal the given
value
- def columnNumberLt(value: Integer): Traversal[NodeType]
Traverse to nodes where the columnNumber is less than the given
value
- def columnNumberLte(value: Integer): Traversal[NodeType]
Traverse to nodes where the columnNumber is less than or equal the given
value
- def columnNumberNot(values: Integer*): Traversal[NodeType]
Traverse to nodes where columnNumber is not equal to any of the given
values
. - def columnNumberNot(value: Integer): Traversal[NodeType]
Traverse to nodes where columnNumber is not equal to the given
value
. - def definingBlock: Traversal[Block]
The block in which local is declared.
The block in which local is declared.
- Annotations
- @Doc()
- def dynamicTypeHintFullName: Traversal[String]
Traverse to dynamicTypeHintFullName property
- def getClass(): Class[_ <: AnyVal]
- Definition Classes
- AnyVal → Any
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- def lineNumber(values: Integer*): Traversal[NodeType]
Traverse to nodes where the lineNumber equals at least one of the given
values
- def lineNumber(value: Integer): Traversal[NodeType]
Traverse to nodes where the lineNumber equals the given
value
- def lineNumber: Traversal[Integer]
Traverse to lineNumber property
- def lineNumberGt(value: Integer): Traversal[NodeType]
Traverse to nodes where the lineNumber is greater than the given
value
- def lineNumberGte(value: Integer): Traversal[NodeType]
Traverse to nodes where the lineNumber is greater than or equal the given
value
- def lineNumberLt(value: Integer): Traversal[NodeType]
Traverse to nodes where the lineNumber is less than the given
value
- def lineNumberLte(value: Integer): Traversal[NodeType]
Traverse to nodes where the lineNumber is less than or equal the given
value
- def lineNumberNot(values: Integer*): Traversal[NodeType]
Traverse to nodes where lineNumber is not equal to any of the given
values
. - def lineNumberNot(value: Integer): Traversal[NodeType]
Traverse to nodes where lineNumber is not equal to the given
value
. - def name(patterns: String*): Traversal[NodeType]
Traverse to nodes where the name matches at least one of the regular expressions in
values
- def name(pattern: String): Traversal[NodeType]
Traverse to nodes where the name matches the regular expression
value
- def name: Traversal[String]
Traverse to name property
- def nameExact(values: String*): Traversal[NodeType]
Traverse to nodes where name matches one of the elements in
values
exactly. - def nameExact(value: String): Traversal[NodeType]
Traverse to nodes where name matches
value
exactly. - def nameNot(patterns: String*): Traversal[NodeType]
Traverse to nodes where name does not match any of the regular expressions in
values
. - def nameNot(pattern: String): Traversal[NodeType]
Traverse to nodes where name does not match the regular expression
value
. - def order(values: Int*): Traversal[NodeType]
Traverse to nodes where the order equals at least one of the given
values
- def order(value: Int): Traversal[NodeType]
Traverse to nodes where the order equals the given
value
- def order: Traversal[Int]
Traverse to order property
- def orderGt(value: Int): Traversal[NodeType]
Traverse to nodes where the order is greater than the given
value
- def orderGte(value: Int): Traversal[NodeType]
Traverse to nodes where the order is greater than or equal the given
value
- def orderLt(value: Int): Traversal[NodeType]
Traverse to nodes where the order is less than the given
value
- def orderLte(value: Int): Traversal[NodeType]
Traverse to nodes where the order is less than or equal the given
value
- def orderNot(values: Int*): Traversal[NodeType]
Traverse to nodes where order is not equal to any of the given
values
. - def orderNot(value: Int): Traversal[NodeType]
Traverse to nodes where order is not equal to the given
value
. - def referencingIdentifiers: Traversal[Identifier]
Places (identifier) where this local is being referenced
Places (identifier) where this local is being referenced
- Annotations
- @Doc()
- def toString(): String
- Definition Classes
- Any
- val traversal: IterableOnce[NodeType]
- def typ: Traversal[Type]
The type of the local.
The type of the local.
- Annotations
- @Doc()
- def typeFullName(patterns: String*): Traversal[NodeType]
Traverse to nodes where the typeFullName matches at least one of the regular expressions in
values
- def typeFullName(pattern: String): Traversal[NodeType]
Traverse to nodes where the typeFullName matches the regular expression
value
- def typeFullName: Traversal[String]
Traverse to typeFullName property
- def typeFullNameExact(values: String*): Traversal[NodeType]
Traverse to nodes where typeFullName matches one of the elements in
values
exactly. - def typeFullNameExact(value: String): Traversal[NodeType]
Traverse to nodes where typeFullName matches
value
exactly. - def typeFullNameNot(patterns: String*): Traversal[NodeType]
Traverse to nodes where typeFullName does not match any of the regular expressions in
values
. - def typeFullNameNot(pattern: String): Traversal[NodeType]
Traverse to nodes where typeFullName does not match the regular expression
value
.