Compare commits
2 Commits
0e23ab4636
...
d50a748884
Author | SHA1 | Date | |
---|---|---|---|
d50a748884 | |||
c44d588b30 |
@ -26,6 +26,11 @@
|
|||||||
"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(ty.clone());
|
foreign_keys.insert(CustomTypeKey(ty.0.clone(), importer_module.module_id));
|
||||||
ty
|
ty
|
||||||
}
|
}
|
||||||
Err(e) => {
|
Err(e) => {
|
||||||
@ -488,13 +488,6 @@ 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