MCPcopy Index your code
hub / github.com/endbasic/endbasic / is_word

Method is_word

core/src/lexer.rs:229–234  ·  view source on GitHub ↗
(&self)

Source from the content-addressed store, hash-verified

227 }
228
229 fn is_word(&self) -> bool {
230 match *self {
231 '_' => true,
232 ch => ch.is_alphanumeric(),
233 }
234 }
235}
236
237/// A token along with its position and length in the source.

Callers 3

consume_symbolMethod · 0.80
consume_labelMethod · 0.80
readMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected