comparison compiler.js @ 66:25b697c91629

Finish implementation of external module access
author Mike Pavone <pavone@retrodev.com>
date Sat, 14 Jul 2012 12:30:25 -0700
parents f57b2f4048d0
children 3a169ebb3224
comparison
equal deleted inserted replaced
65:b4190db72288 66:25b697c91629
9 { 9 {
10 this.path = path; 10 this.path = path;
11 this.file = file; 11 this.file = file;
12 } 12 }
13 13
14 var toplevel = new topsymbols(); 14 var toplevel = new topsymbols([]);
15 function topsymbols(moduledirs) 15 function topsymbols(moduledirs)
16 { 16 {
17 this.names = null; 17 this.names = null;
18 this.used = {}; 18 this.used = {};
19 var self = this; 19 var self = this;