Compare commits
No commits in common. "d50a7488845b9abea2788a6076237329ed8286ce" and "0e23ab46366701cc7c8f21531d71ba54e872f0e2" have entirely different histories.
d50a748884
...
0e23ab4636
@ -26,11 +26,6 @@
|
|||||||
"configuration": "./language-configuration.json"
|
"configuration": "./language-configuration.json"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"breakpoints": [
|
|
||||||
{
|
|
||||||
"language": "reid"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"configuration": {
|
"configuration": {
|
||||||
"type": "object",
|
"type": "object",
|
||||||
"title": "reid-language-server",
|
"title": "reid-language-server",
|
||||||
|
@ -365,7 +365,7 @@ impl<'map> Pass for LinkerPass<'map> {
|
|||||||
// later replaced in-source by name)
|
// later replaced in-source by name)
|
||||||
let imported_ty_key = match resolve_type(&ty, &modules) {
|
let imported_ty_key = match resolve_type(&ty, &modules) {
|
||||||
Ok(ty) => {
|
Ok(ty) => {
|
||||||
foreign_keys.insert(CustomTypeKey(ty.0.clone(), importer_module.module_id));
|
foreign_keys.insert(ty.clone());
|
||||||
ty
|
ty
|
||||||
}
|
}
|
||||||
Err(e) => {
|
Err(e) => {
|
||||||
@ -488,6 +488,13 @@ impl<'map> Pass for LinkerPass<'map> {
|
|||||||
return Ok(());
|
return Ok(());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
// let resolved = match resolve_type(&ty, &modules) {
|
||||||
|
// Ok(ty) => ty.clone(),
|
||||||
|
// Err(e) => {
|
||||||
|
// state.note_errors(&vec![e], meta);
|
||||||
|
// return Ok(());
|
||||||
|
// }
|
||||||
|
// };
|
||||||
}
|
}
|
||||||
|
|
||||||
dbg!(&imported_types);
|
dbg!(&imported_types);
|
||||||
|
Loading…
Reference in New Issue
Block a user