@@ -28,7 +28,7 @@ _empty_coverage_struct = struct(
2828 replacements = {},
2929)
3030
31- def phase_binary_compile (ctx , p ):
31+ def phase_compile_binary (ctx , p ):
3232 args = struct (
3333 buildijar = False ,
3434 unused_dependency_checker_ignored_targets = [
@@ -37,9 +37,9 @@ def phase_binary_compile(ctx, p):
3737 ctx .attr .unused_dependency_checker_ignored_targets
3838 ],
3939 )
40- return _phase_default_compile (ctx , p , args )
40+ return _phase_compile_default (ctx , p , args )
4141
42- def phase_library_compile (ctx , p ):
42+ def phase_compile_library (ctx , p ):
4343 args = struct (
4444 srcjars = p .collect_srcjars ,
4545 unused_dependency_checker_ignored_targets = [
@@ -48,19 +48,19 @@ def phase_library_compile(ctx, p):
4848 ctx .attr .unused_dependency_checker_ignored_targets
4949 ],
5050 )
51- return _phase_default_compile (ctx , p , args )
51+ return _phase_compile_default (ctx , p , args )
5252
53- def phase_library_for_plugin_bootstrapping_compile (ctx , p ):
53+ def phase_compile_library_for_plugin_bootstrapping (ctx , p ):
5454 args = struct (
5555 unused_dependency_checker_ignored_targets = [
5656 target .label
5757 for target in p .scalac_provider .default_classpath + ctx .attr .exports
5858 ],
5959 unused_dependency_checker_mode = "off" ,
6060 )
61- return _phase_default_compile (ctx , p , args )
61+ return _phase_compile_default (ctx , p , args )
6262
63- def phase_macro_library_compile (ctx , p ):
63+ def phase_compile_macro_library (ctx , p ):
6464 args = struct (
6565 buildijar = False ,
6666 unused_dependency_checker_ignored_targets = [
@@ -69,9 +69,9 @@ def phase_macro_library_compile(ctx, p):
6969 ctx .attr .unused_dependency_checker_ignored_targets
7070 ],
7171 )
72- return _phase_default_compile (ctx , p , args )
72+ return _phase_compile_default (ctx , p , args )
7373
74- def phase_junit_test_compile (ctx , p ):
74+ def phase_compile_junit_test (ctx , p ):
7575 args = struct (
7676 buildijar = False ,
7777 implicit_junit_deps_needed_for_java_compilation = [
@@ -89,9 +89,9 @@ def phase_junit_test_compile(ctx, p):
8989 ctx .attr ._bazel_test_runner .label ,
9090 ],
9191 )
92- return _phase_default_compile (ctx , p , args )
92+ return _phase_compile_default (ctx , p , args )
9393
94- def phase_repl_compile (ctx , p ):
94+ def phase_compile_repl (ctx , p ):
9595 args = struct (
9696 buildijar = False ,
9797 unused_dependency_checker_ignored_targets = [
@@ -100,9 +100,9 @@ def phase_repl_compile(ctx, p):
100100 ctx .attr .unused_dependency_checker_ignored_targets
101101 ],
102102 )
103- return _phase_default_compile (ctx , p , args )
103+ return _phase_compile_default (ctx , p , args )
104104
105- def phase_scalatest_compile (ctx , p ):
105+ def phase_compile_scalatest (ctx , p ):
106106 args = struct (
107107 buildijar = False ,
108108 unused_dependency_checker_ignored_targets = [
@@ -111,12 +111,12 @@ def phase_scalatest_compile(ctx, p):
111111 ctx .attr .unused_dependency_checker_ignored_targets
112112 ],
113113 )
114- return _phase_default_compile (ctx , p , args )
114+ return _phase_compile_default (ctx , p , args )
115115
116- def phase_common_compile (ctx , p ):
117- return _phase_default_compile (ctx , p )
116+ def phase_compile_common (ctx , p ):
117+ return _phase_compile_default (ctx , p )
118118
119- def _phase_default_compile (ctx , p , _args = struct ()):
119+ def _phase_compile_default (ctx , p , _args = struct ()):
120120 return _phase_compile (
121121 ctx ,
122122 p ,
0 commit comments