MCPcopy Index your code
hub / github.com/stemkoski/stemkoski.github.com / expression

Function expression

MathBox/mathbox-core.js:32663–32674  ·  view source on GitHub ↗
(rbp)

Source from the content-addressed store, hash-verified

32661}
32662
32663function expression(rbp) {
32664 var left, t = token
32665 advance()
32666
32667 left = t.nud()
32668 while(rbp < token.lbp) {
32669 t = token
32670 advance()
32671 left = t.led(left)
32672 }
32673 return left
32674}
32675
32676function infix(id, bp, led) {
32677 var sym = symbol(id, bp)

Callers 6

DataFunction · 0.70
mathbox-core.jsFile · 0.70
infixFunction · 0.70
infixrFunction · 0.70
prefixFunction · 0.70
assignmentFunction · 0.70

Calls 1

advanceFunction · 0.70

Tested by

no test coverage detected