(importname)
| 193 | |
| 194 | |
| 195 | function registerimport(importname) { |
| 196 | var state = cx.state; |
| 197 | for (var t = state.importedtypes; t; t = t.next) |
| 198 | if(t.name == importname) return; |
| 199 | state.importedtypes = { name: importname, next: state.importedtypes }; |
| 200 | } |
| 201 | // Combinator utils |
| 202 | |
| 203 | var cx = {state: null, column: null, marked: null, cc: null}; |