@@ -10,8 +10,8 @@ use slang_solidity_v2_ir::ir;
1010
1111use crate :: binder:: { Binder , Definition , Reference } ;
1212use crate :: passes:: {
13- p1_collect_definitions, p2_linearise_contracts, p3_type_definitions, p4_resolve_references ,
14- p5_compute_linearisations ,
13+ p1_collect_definitions, p2_linearise_contracts, p3_type_definitions, p4_compute_linearisations ,
14+ p5_resolve_references ,
1515} ;
1616use crate :: types:: {
1717 ArrayType , ByteArrayType , ContractType , EnumType , FixedPointNumberType , FixedSizeArrayType ,
@@ -77,8 +77,8 @@ impl SemanticContext {
7777 p1_collect_definitions:: run ( files, & mut binder, diagnostics) ;
7878 p2_linearise_contracts:: run ( files, & mut binder, diagnostics) ;
7979 p3_type_definitions:: run ( files, & mut binder, & mut types, language_version) ;
80- p4_resolve_references :: run ( files , & mut binder, & mut types, language_version ) ;
81- let contract_data = p5_compute_linearisations :: run ( & binder, & types) ;
80+ let contract_data = p4_compute_linearisations :: run ( & binder, & types) ;
81+ p5_resolve_references :: run ( files , & mut binder, & mut types, language_version ) ;
8282
8383 let file_node_mapper = FileNodeMapper :: build_from ( files) ;
8484
0 commit comments