File tree 4 files changed +6
-6
lines changed 4 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -255,7 +255,7 @@ final class JSDefinitions()(using Context) {
255
255
def isJSThisFunctionClass (cls : Symbol ): Boolean =
256
256
isScalaJSVarArityClass(cls, " ThisFunction" )
257
257
258
- /** Definitions related to the treatment of JUnit boostrappers . */
258
+ /** Definitions related to the treatment of JUnit bootstrappers . */
259
259
object junit {
260
260
@ threadUnsafe lazy val TestAnnotType : TypeRef = requiredClassRef(" org.junit.Test" )
261
261
def TestAnnotClass (using Context ): ClassSymbol = TestAnnotType .symbol.asClass
Original file line number Diff line number Diff line change @@ -470,8 +470,8 @@ object Symbols {
470
470
flags : FlagSet = sym.flags,
471
471
info : Type = sym.info,
472
472
privateWithin : Symbol = sym.privateWithin,
473
- coord : Coord = NoCoord , // Can be `= owner.coord` once we boostrap
474
- associatedFile : AbstractFile = null // Can be `= owner.associatedFile` once we boostrap
473
+ coord : Coord = NoCoord , // Can be `= owner.coord` once we bootstrap
474
+ associatedFile : AbstractFile = null // Can be `= owner.associatedFile` once we bootstrap
475
475
): Symbol = {
476
476
val coord1 = if (coord == NoCoord ) owner.coord else coord
477
477
val associatedFile1 = if (associatedFile == null ) owner.associatedFile else associatedFile
Original file line number Diff line number Diff line change @@ -98,7 +98,7 @@ import dotty.tools.backend.sjs.JSDefinitions.jsdefn
98
98
* framework with official asynchronous support instead.
99
99
*
100
100
* Because `Booststrapper` is annotated with `@EnableReflectiveInstantiation`,
101
- * the run-time implementation of JUnit for Scala.js can load the boostrapper
101
+ * the run-time implementation of JUnit for Scala.js can load the bootstrapper
102
102
* module using `scala.scalajs.reflect.Reflect`, and then use the methods of
103
103
* Bootstrapper, which are implemented in the bootstrapper object, to perform
104
104
* test discovery and invocation.
@@ -145,7 +145,7 @@ class JUnitBootstrappers extends MiniPhase {
145
145
private def genBootstrapper (testClass : ClassSymbol )(using Context ): TypeDef = {
146
146
val junitdefn = jsdefn.junit
147
147
148
- /* The name of the boostrapper module. It is derived from the test class name by
148
+ /* The name of the bootstrapper module. It is derived from the test class name by
149
149
* appending a specific suffix string mandated "by spec". It will indeed also be
150
150
* computed as such at run-time by the Scala.js JUnit Runtime support. Therefore,
151
151
* it must *not* be a dotc semantic name.
Original file line number Diff line number Diff line change @@ -247,7 +247,7 @@ object Build {
247
247
excludeFromIDE := true
248
248
)
249
249
250
- // Settings used when compiling dotty (both non-boostrapped and bootstrapped)
250
+ // Settings used when compiling dotty (both non-bootstrapped and bootstrapped)
251
251
lazy val commonDottySettings = commonSettings ++ Seq (
252
252
// Manually set the standard library to use
253
253
autoScalaLibrary := false
You can’t perform that action at this time.
0 commit comments