(s)
| 20133 | } |
| 20134 | |
| 20135 | function application(s) { |
| 20136 | var x = symbol(s, 42); |
| 20137 | |
| 20138 | x.infix = true; |
| 20139 | x.led = function(left) { |
| 20140 | nobreaknonadjacent(state.tokens.prev, state.tokens.curr); |
| 20141 | |
| 20142 | this.left = left; |
| 20143 | this.right = doFunction({ type: "arrow", loneArg: left }); |
| 20144 | return this; |
| 20145 | }; |
| 20146 | return x; |
| 20147 | } |
| 20148 | |
| 20149 | function relation(s, f) { |
| 20150 | var x = symbol(s, 100); |
no test coverage detected