(type, value)
| 318 | } |
| 319 | |
| 320 | function importdef (type, value) { |
| 321 | if(type == "variable" && /[A-Z]/.test(value.charAt(0))) { registerimport(value); return cont(); } |
| 322 | else if(type == "variable" || type == "property" || type == "." || value == "*") return cont(importdef); |
| 323 | } |
| 324 | |
| 325 | function typedef (type, value) |
| 326 | { |
nothing calls this directly
no test coverage detected