File tree Expand file tree Collapse file tree 3 files changed +3
-14
lines changed
doc-tool/src/dotty/tools/dottydoc/core Expand file tree Collapse file tree 3 files changed +3
-14
lines changed Original file line number Diff line number Diff line change 42
42
../scala-scala/src/library/scala/concurrent/package.scala
43
43
# -Ycheck:arrayConstructors failure
44
44
45
-
46
-
47
-
48
-
49
- ## Errors involving dottydoc:
50
-
51
- ../scala-scala/src/library/scala/sys/SystemProperties.scala
52
- # Test dotty.tools.dottydoc.TestWhitelistedCollections.arrayHasDocumentation failed
53
-
54
-
55
-
56
45
## Errors having to do with unavailable APIs or language features:
57
46
58
47
../scala-scala/src/library/scala/reflect/ClassManifestDeprecatedApis.scala
Original file line number Diff line number Diff line change 401
401
../scala-scala/src/library/scala/compat/Platform.scala
402
402
403
403
../scala-scala/src/library/scala/sys/package.scala
404
- # ../scala-scala/src/library/scala/sys/SystemProperties.scala
404
+ ../scala-scala/src/library/scala/sys/SystemProperties.scala
405
405
../scala-scala/src/library/scala/sys/Prop.scala
406
406
../scala-scala/src/library/scala/sys/PropImpl.scala
407
407
../scala-scala/src/library/scala/sys/BooleanProp.scala
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ import dotc.CompilationUnit
8
8
import dotc .config .Printers .dottydoc
9
9
import dotc .core .Contexts .Context
10
10
import dotc .core .Comments .ContextDocstrings
11
- import dotc .core .Types .NoType
11
+ import dotc .core .Types ._// NoType
12
12
import dotc .core .Phases .Phase
13
13
import dotc .core .Symbols .{ Symbol , NoSymbol }
14
14
@@ -46,7 +46,7 @@ class DocASTPhase extends Phase {
46
46
47
47
def membersFromSymbol (sym : Symbol ): List [Entity ] = {
48
48
if (sym.info ne NoType ) {
49
- val defs = sym.info.bounds.hi.membersBasedOnFlags(Flags .Method , Flags .Synthetic | Flags .Private )
49
+ val defs = sym.info.bounds.hi.finalResultType. membersBasedOnFlags(Flags .Method , Flags .Synthetic | Flags .Private )
50
50
.filterNot(_.symbol.owner.name.show == " Any" )
51
51
.map { meth =>
52
52
DefImpl (
You can’t perform that action at this time.
0 commit comments