Home | History | Annotate | Download | only in src

Lines Matching defs:exports

39 //   interface ::= UNDETERMINED | VALUE | CONST | MODULE(exports)
40 // exports ::= {name : interface, ...}
42 // allow to turn non-const values into const, or adding additional exports to
43 // frozen interfaces. Otherwise, unifying modules merges their exports.
83 // Add a name to the list of exports. If it already exists, unify with
149 ZoneHashMap* exports = Chase()->exports_;
150 return exports ? exports->occupancy() : 0;
184 explicit Iterator(const ZoneHashMap* exports)
185 : exports_(exports), entry_(exports ? exports->Start() : NULL) {}
212 ZoneHashMap* exports_; // Module exports and their types (allocated lazily)