Lines Matching full:url
60 // URL, followed by an export of the symbol, allowing this code to treat both
83 // The URL imported, e.g. `import .. from 'url';`. Empty for `export {a, b};`.
84 StringRef URL; member
117 if (LHS.URL.empty() != RHS.URL.empty()) in operator <()
118 return LHS.URL.empty() < RHS.URL.empty(); in operator <()
119 if (int Res = LHS.URL.compare_insensitive(RHS.URL)) in operator <()
287 // same URL and merge their names. E.g.
312 PreviousReference->URL != Reference->URL) { in mergeModuleReferences()
409 // References w/o a URL, e.g. export {A}, groups with RELATIVE. in parseModuleReferences()
424 << ", url: " << Reference.URL in parseModuleReferences()
453 Reference.URL = in parseModuleReference()
466 // URL = TokenText without the quotes. in parseModuleReference()
467 Reference.URL = in parseModuleReference()
469 if (Reference.URL.starts_with("..")) { in parseModuleReference()
472 } else if (Reference.URL.starts_with(".")) { in parseModuleReference()