@@ -558,12 +558,10 @@ impl StackGraphLanguage {
558
558
stack_graph : & ' a mut StackGraph ,
559
559
file : Handle < File > ,
560
560
source : & ' a str ,
561
- source_path : & Path ,
562
- source_root : & Path ,
563
561
globals : & ' a Variables < ' a > ,
564
562
cancellation_flag : & ' a dyn CancellationFlag ,
565
563
) -> Result < ( ) , BuildError > {
566
- self . builder_into_stack_graph ( stack_graph, file, source, source_path , source_root )
564
+ self . builder_into_stack_graph ( stack_graph, file, source)
567
565
. build ( globals, cancellation_flag)
568
566
}
569
567
@@ -576,10 +574,8 @@ impl StackGraphLanguage {
576
574
stack_graph : & ' a mut StackGraph ,
577
575
file : Handle < File > ,
578
576
source : & ' a str ,
579
- source_path : & ' a Path ,
580
- source_root : & ' a Path ,
581
577
) -> Builder < ' a > {
582
- Builder :: new ( self , stack_graph, file, source, source_path , source_root )
578
+ Builder :: new ( self , stack_graph, file, source)
583
579
}
584
580
}
585
581
@@ -588,8 +584,6 @@ pub struct Builder<'a> {
588
584
stack_graph : & ' a mut StackGraph ,
589
585
file : Handle < File > ,
590
586
source : & ' a str ,
591
- source_path : & ' a Path ,
592
- source_root : & ' a Path ,
593
587
graph : Graph < ' a > ,
594
588
remapped_nodes : HashMap < usize , NodeID > ,
595
589
injected_node_count : usize ,
@@ -602,17 +596,13 @@ impl<'a> Builder<'a> {
602
596
stack_graph : & ' a mut StackGraph ,
603
597
file : Handle < File > ,
604
598
source : & ' a str ,
605
- source_path : & ' a Path ,
606
- source_root : & ' a Path ,
607
599
) -> Self {
608
600
let span_calculator = SpanCalculator :: new ( source) ;
609
601
Builder {
610
602
sgl,
611
603
stack_graph,
612
604
file,
613
605
source,
614
- source_path,
615
- source_root,
616
606
graph : Graph :: new ( ) ,
617
607
remapped_nodes : HashMap :: new ( ) ,
618
608
injected_node_count : 0 ,
@@ -659,19 +649,10 @@ impl<'a> Builder<'a> {
659
649
. add ( JUMP_TO_SCOPE_NODE_VAR . into ( ) , jump_to_scope_node. into ( ) )
660
650
. expect ( "Failed to set JUMP_TO_SCOPE_NODE" ) ;
661
651
662
- if globals. get ( & FILE_PATH_VAR . into ( ) ) . is_none ( ) {
663
- let file_name = self . source_path . to_str ( ) . unwrap ( ) . to_string ( ) ;
664
- globals
665
- . add ( FILE_PATH_VAR . into ( ) , file_name. into ( ) )
666
- . expect ( "Failed to set FILE_PATH" ) ;
667
- }
668
-
669
- if globals. get ( & ROOT_PATH_VAR . into ( ) ) . is_none ( ) {
670
- let root_path = self . source_root . to_str ( ) . unwrap ( ) . to_string ( ) ;
671
- globals
672
- . add ( ROOT_PATH_VAR . into ( ) , root_path. into ( ) )
673
- . expect ( "Failed to set ROOT_PATH" ) ;
674
- }
652
+ // FILE_PATH is mandatory
653
+ globals
654
+ . get ( & FILE_PATH_VAR . into ( ) )
655
+ . expect ( "FILE_PATH not set" ) ;
675
656
676
657
let mut config = ExecutionConfig :: new ( & self . sgl . functions , & globals)
677
658
. lazy ( true )
0 commit comments