MCPcopy Create free account
hub / github.com/dylan-sutton-chavez/edge-python / scan_id_rest

Method scan_id_rest

compiler/src/modules/lexer/scan.rs:61–63  ·  view source on GitHub ↗
(&mut self)

Source from the content-addressed store, hash-verified

59 }
60 }
61 fn scan_id_rest(&mut self) {
62 self.scan_while(|b| BYTE_CLASS[b as usize] & ID_CONT != 0);
63 }
64 fn scan_digits(&mut self) {
65 self.scan_while(|b| BYTE_CLASS[b as usize] & DIGIT != 0 || b == b'_');
66 }

Callers 1

next_tokenMethod · 0.80

Calls 1

scan_whileMethod · 0.80

Tested by

no test coverage detected