Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/PerroEngine/Perro
/ skip_ws
Method
skip_ws
perro_source/core/perro_particle_math/src/lib.rs:410–414 ·
view source on GitHub ↗
(&mut self)
Source
from the content-addressed store, hash-verified
408
self.parse_unary()?;
409
self.ops.push(Op::Pow);
410
self.skip_ws();
411
}
412
Ok(())
413
}
414
415
fn parse_unary(&mut self) -> Result<(), CompileError> {
416
self.skip_ws();
417
if self.eat(b
'+'
) {
Callers
10
compile_expression
Function · 0.45
parse_expr
Method · 0.45
parse_term
Method · 0.45
parse_power
Method · 0.45
parse_unary
Method · 0.45
parse_primary
Method · 0.45
parse_args
Method · 0.45
parse_ident
Method · 0.45
parse_number
Method · 0.45
eat
Method · 0.45
Calls
1
len
Method · 0.45
Tested by
no test coverage detected