(type)
| 216 | return cont(); |
| 217 | } |
| 218 | function maybeop(type) { |
| 219 | if (content == ".") return cont(maybeprop); |
| 220 | if (content == "::<"){return cont(typarams, maybeop);} |
| 221 | if (type == "op" || content == ":") return cont(expression); |
| 222 | if (type == "(" || type == "[") return matchBrackets(type, expression); |
| 223 | return pass(); |
| 224 | } |
| 225 | function maybeprop() { |
| 226 | if (content.match(/^\w+$/)) {cx.marked = "variable"; return cont(maybeop);} |
| 227 | return pass(expression); |
nothing calls this directly
no test coverage detected