File tree 7 files changed +6
-7
lines changed
tests/pos-with-compiler-cc
7 files changed +6
-7
lines changed Original file line number Diff line number Diff line change @@ -774,7 +774,6 @@ jobs:
774
774
with :
775
775
filename : .github/workflows/issue_nightly_failed.md
776
776
777
- build-sdk-package :
778
777
uses : ./.github/workflows/build-sdk.yml
779
778
if :
780
779
(github.event_name == 'pull_request' && !contains(github.event.pull_request.body, '[skip ci]')) ||
Original file line number Diff line number Diff line change @@ -1143,7 +1143,7 @@ trait BCodeBodyBuilder extends BCodeSkelBuilder {
1143
1143
* - Every time when generating an ATHROW, a new basic block is started.
1144
1144
* - During classfile writing, such basic blocks are found to be dead: no branches go there
1145
1145
* - Eliminating dead code would probably require complex shifts in the output byte buffer
1146
- * - But there's an easy solution: replace all code in the dead block with with
1146
+ * - But there's an easy solution: replace all code in the dead block with
1147
1147
* `nop; nop; ... nop; athrow`, making sure the bytecode size stays the same
1148
1148
* - The corresponding stack frame can be easily generated: on entering a dead the block,
1149
1149
* the frame requires a single Throwable on the stack.
Original file line number Diff line number Diff line change @@ -70,7 +70,7 @@ abstract class Printer {
70
70
def changePrec (prec : Precedence )(op : => Text ): Text =
71
71
if (prec < this .prec) atPrec(prec) (" (" ~ op ~ " )" ) else atPrec(prec)(op)
72
72
73
- /** The name, possibly with with namespace suffix if debugNames is set:
73
+ /** The name, possibly with namespace suffix if debugNames is set:
74
74
* /L for local names, /V for other term names, /T for type names
75
75
*/
76
76
def nameString (name : Name ): String
Original file line number Diff line number Diff line change @@ -1263,7 +1263,7 @@ trait Applications extends Compatibility {
1263
1263
tree
1264
1264
}
1265
1265
1266
- /** Is `tp` a unary function type or an overloaded type with with only unary function
1266
+ /** Is `tp` a unary function type or an overloaded type with only unary function
1267
1267
* types as alternatives?
1268
1268
*/
1269
1269
def isUnary (tp : Type )(using Context ): Boolean = tp match {
Original file line number Diff line number Diff line change @@ -1103,7 +1103,7 @@ trait BCodeBodyBuilder extends BCodeSkelBuilder {
1103
1103
* - Every time when generating an ATHROW, a new basic block is started.
1104
1104
* - During classfile writing, such basic blocks are found to be dead: no branches go there
1105
1105
* - Eliminating dead code would probably require complex shifts in the output byte buffer
1106
- * - But there's an easy solution: replace all code in the dead block with with
1106
+ * - But there's an easy solution: replace all code in the dead block with
1107
1107
* `nop; nop; ... nop; athrow`, making sure the bytecode size stays the same
1108
1108
* - The corresponding stack frame can be easily generated: on entering a dead the block,
1109
1109
* the frame requires a single Throwable on the stack.
Original file line number Diff line number Diff line change @@ -70,7 +70,7 @@ abstract class Printer extends caps.Pure {
70
70
def changePrec (prec : Precedence )(op : => Text ): Text =
71
71
if (prec < this .prec) atPrec(prec) (" (" ~ op ~ " )" ) else atPrec(prec)(op)
72
72
73
- /** The name, possibly with with namespace suffix if debugNames is set:
73
+ /** The name, possibly with namespace suffix if debugNames is set:
74
74
* /L for local names, /V for other term names, /T for type names
75
75
*/
76
76
def nameString (name : Name ): String
Original file line number Diff line number Diff line change @@ -1182,7 +1182,7 @@ trait Applications extends Compatibility {
1182
1182
tree
1183
1183
}
1184
1184
1185
- /** Is `tp` a unary function type or an overloaded type with with only unary function
1185
+ /** Is `tp` a unary function type or an overloaded type with only unary function
1186
1186
* types as alternatives?
1187
1187
*/
1188
1188
def isUnary (tp : Type )(using Context ): Boolean = tp match {
You can’t perform that action at this time.
0 commit comments