Class

scala.tools.nsc.typechecker.Namers

Namer

Related Doc: package Namers

Permalink

abstract class Namer extends Analyzer.MethodSynth with Analyzer.NamerContextErrors

Self Type
Analyzer.Namer
Source
Namers.scala
Linear Supertypes
Type Hierarchy
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Namer
  2. NamerContextErrors
  3. MethodSynth
  4. AnyRef
  5. Any
Implicitly
  1. by any2stringadd
  2. by StringFormat
  3. by Ensuring
  4. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new Namer(context: Analyzer.Context)

    Permalink

Type Members

  1. sealed trait AnyBeanGetter extends Namers.Namer.BeanAccessor with Namers.Namer.DerivedGetter

    Permalink
    Definition Classes
    MethodSynth
  2. sealed abstract class BaseGetter extends Namers.Namer.DerivedGetter

    Permalink
    Definition Classes
    MethodSynth
  3. sealed abstract class BeanAccessor extends Namers.Namer.DerivedFromValDef

    Permalink
    Definition Classes
    MethodSynth
  4. case class BeanGetter(tree: Global.ValDef) extends Namers.Namer.BeanAccessor with Namers.Namer.AnyBeanGetter with Product with Serializable

    Permalink
    Definition Classes
    MethodSynth
  5. case class BeanSetter(tree: Global.ValDef) extends Namers.Namer.BeanAccessor with Namers.Namer.DerivedSetter with Product with Serializable

    Permalink
    Definition Classes
    MethodSynth
  6. case class BooleanBeanGetter(tree: Global.ValDef) extends Namers.Namer.BeanAccessor with Namers.Namer.AnyBeanGetter with Product with Serializable

    Permalink
    Definition Classes
    MethodSynth
  7. class CompleterWrapper extends Analyzer.TypeCompleter

    Permalink
  8. sealed trait Derived extends AnyRef

    Permalink

    This trait assembles what's needed for synthesizing derived methods.

    This trait assembles what's needed for synthesizing derived methods. Important: Typically, instances of this trait are created TWICE for each derived symbol; once form Namers in an enter method, and once from Typers in addDerivedTrees. So it's important that creating an instance of Derived does not have a side effect, or if it has a side effect, control that it is done only once.

    Definition Classes
    MethodSynth
  9. sealed trait DerivedFromClassDef extends Namers.Namer.DerivedFromMemberDef

    Permalink
    Definition Classes
    MethodSynth
  10. sealed trait DerivedFromMemberDef extends Namers.Namer.Derived

    Permalink
    Definition Classes
    MethodSynth
  11. sealed trait DerivedFromValDef extends Namers.Namer.DerivedFromMemberDef

    Permalink
    Definition Classes
    MethodSynth
  12. sealed trait DerivedGetter extends Namers.Namer.DerivedFromValDef

    Permalink
    Definition Classes
    MethodSynth
  13. sealed trait DerivedSetter extends Namers.Namer.DerivedFromValDef

    Permalink
    Definition Classes
    MethodSynth
  14. case class Field(tree: Global.ValDef) extends Namers.Namer.DerivedFromValDef with Product with Serializable

    Permalink
    Definition Classes
    MethodSynth
  15. case class Getter(tree: Global.ValDef) extends Namers.Namer.BaseGetter with Product with Serializable

    Permalink
    Definition Classes
    MethodSynth
  16. case class ImplicitClassWrapper(tree: Global.ClassDef) extends Namers.Namer.DerivedFromClassDef with Product with Serializable

    Permalink

    A synthetic method which performs the implicit conversion implied by the declaration of an implicit class.

    A synthetic method which performs the implicit conversion implied by the declaration of an implicit class.

    Definition Classes
    MethodSynth
  17. case class LazyValGetter(tree: Global.ValDef) extends Namers.Namer.BaseGetter with Product with Serializable

    Permalink

    Implements lazy value accessors:

    Implements lazy value accessors:

    • for lazy values of type Unit and all lazy fields inside traits, the rhs is the initializer itself
    • for all other lazy values z the accessor is a block of this form: { z = <rhs>; z } where z can be an identifier or a field.
    Definition Classes
    MethodSynth
  18. class LogTransitions[S] extends AnyRef

    Permalink
  19. trait NoSymbolBeanGetter extends Namers.Namer.BeanAccessor with Namers.Namer.AnyBeanGetter

    Permalink
    Definition Classes
    MethodSynth
  20. case class Param(tree: Global.ValDef) extends Namers.Namer.DerivedFromValDef with Product with Serializable

    Permalink
    Definition Classes
    MethodSynth
  21. case class Setter(tree: Global.ValDef) extends Namers.Namer.DerivedSetter with Product with Serializable

    Permalink
    Definition Classes
    MethodSynth

Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink

    Test two objects for inequality.

    Test two objects for inequality.

    returns

    true if !(this == that), false otherwise.

    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink

    Equivalent to x.hashCode except for boxed numeric types and null.

    Equivalent to x.hashCode except for boxed numeric types and null. For numerics, it returns a hash value which is consistent with value equality: if two value type instances compare as true, then ## will produce the same hash value for each of them. For null returns a hashcode where null.hashCode throws a NullPointerException.

    returns

    a hash value consistent with ==

    Definition Classes
    AnyRef → Any
  3. def +(other: String): String

    Permalink
    Implicit information
    This member is added by an implicit conversion from Analyzer.Namer to any2stringadd[Analyzer.Namer] performed by method any2stringadd in scala.Predef.
    Definition Classes
    any2stringadd
  4. def ->[B](y: B): (Analyzer.Namer, B)

    Permalink
    Implicit information
    This member is added by an implicit conversion from Analyzer.Namer to ArrowAssoc[Analyzer.Namer] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  5. final def ==(arg0: Any): Boolean

    Permalink

    The expression x == that is equivalent to if (x eq null) that eq null else x.equals(that).

    The expression x == that is equivalent to if (x eq null) that eq null else x.equals(that).

    returns

    true if the receiver object is equivalent to the argument; false otherwise.

    Definition Classes
    AnyRef → Any
  6. object NamerErrorGen

    Permalink
    Definition Classes
    NamerContextErrors
  7. def accessorTypeCompleter(tree: Global.ValDef, isSetter: Boolean): Analyzer.TypeCompleter with Analyzer.LockingTypeCompleter with Global.FlagAgnosticCompleter

    Permalink
  8. def addApplyUnapply(cdef: Global.ClassDef, namer: Analyzer.Namer): Unit

    Permalink

    Given a case class case class C[Ts] (ps: Us) Add the following methods to toScope:

    Given a case class case class C[Ts] (ps: Us) Add the following methods to toScope:

    1. if case class is not abstract, add <synthetic> <case> def apply[Ts](ps: Us): C[Ts] = new C[Ts](ps) 2. add a method <synthetic> <case> def unapply[Ts](x: C[Ts]) = <ret-val> where <ret-val> is the caseClassUnapplyReturnValue of class C (see UnApplies.scala)
    cdef

    is the class definition of the case class

    namer

    is the namer of the module class (the comp. obj)

  9. def addCopyMethod(cdef: Global.ClassDef, namer: Analyzer.Namer): Unit

    Permalink
  10. def addDerivedTrees(typer: Analyzer.Typer, stat: Global.Tree): List[Global.Tree]

    Permalink
    Definition Classes
    MethodSynth
  11. def allValDefDerived(vd: Global.ValDef): collection.immutable.List[DerivedFromValDef]

    Permalink
    Definition Classes
    MethodSynth
  12. def applicableTypeParams(owner: Global.Symbol): List[Global.Symbol]

    Permalink
  13. def applyUnapplyMethodCompleter(un_applyDef: Global.DefDef, companionContext: Analyzer.Context): Analyzer.TypeCompleter

    Permalink
  14. final def asInstanceOf[T0]: T0

    Permalink

    Cast the receiver object to be of type T0.

    Cast the receiver object to be of type T0.

    Note that the success of a cast at runtime is modulo Scala's erasure semantics. Therefore the expression 1.asInstanceOf[String] will throw a ClassCastException at runtime, while the expression List(1).asInstanceOf[List[String]] will not. In the latter example, because the type argument is erased as part of compilation it is not possible to check whether the contents of the list are of the requested type.

    returns

    the receiver object.

    Definition Classes
    Any
    Exceptions thrown

    ClassCastException if the receiver object is not an instance of the erasure of type T0.

  15. def assignAndEnterFinishedSymbol(tree: Global.MemberDef): Global.Symbol

    Permalink
  16. def assignAndEnterSymbol(tree: Global.MemberDef): Global.Symbol

    Permalink
  17. def assignSymbol(tree: Global.MemberDef, name: Global.Name, mask: Long): Global.Symbol

    Permalink
  18. def assignSymbol(tree: Global.Tree): Global.Symbol

    Permalink

    Creates a new symbol and assigns it to the tree, returning the symbol

  19. def beanAccessors(vd: Global.ValDef): List[DerivedFromValDef]

    Permalink
    Definition Classes
    MethodSynth
  20. def clone(): AnyRef

    Permalink

    Create a copy of the receiver object.

    Create a copy of the receiver object.

    The default implementation of the clone method is platform dependent.

    returns

    a copy of the receiver object.

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
    Note

    not specified by SLS as a member of AnyRef

  21. def completerOf(tree: Global.Tree): Analyzer.TypeCompleter

    Permalink
  22. def conflict(newS: Global.Symbol, oldS: Global.Symbol): Boolean

    Permalink
    Attributes
    protected
  23. val context: Analyzer.Context

    Permalink
  24. def contextFile: AbstractFile

    Permalink
  25. def copyMethodCompleter(copyDef: Global.DefDef): Analyzer.TypeCompleter

    Permalink
  26. def createFieldSymbol(tree: Global.ValDef): Global.TermSymbol

    Permalink
  27. def createImportSymbol(tree: Global.Tree): Global.TermSymbol

    Permalink
  28. def createInnerNamer(): Analyzer.Namer

    Permalink
  29. def createMemberSymbol(tree: Global.MemberDef, name: Global.Name, mask: Long): Global.Symbol

    Permalink

    Create a new symbol at the context owner based on the given tree.

    Create a new symbol at the context owner based on the given tree. A different name can be given. If the modifier flags should not be be transferred to the symbol as they are, supply a mask containing the flags to keep.

  30. def createNamer(tree: Global.Tree): Analyzer.Namer

    Permalink
  31. def createPackageSymbol(pos: Global.Position, pid: Global.RefTree): Global.Symbol

    Permalink

    All PackageClassInfoTypes come from here.

  32. def createPrimaryConstructorParameterNamer: Analyzer.Namer

    Permalink
  33. def enclosingNamerWithScope(scope: Global.Scope): Analyzer.Namer

    Permalink
  34. def ensureCompanionObject(cdef: Global.ClassDef, creator: (Global.ClassDef) ⇒ Global.Tree = companionModuleDef(_)): Global.Symbol

    Permalink

    If no companion object for clazz exists yet, create one by applying creator to class definition tree.

    If no companion object for clazz exists yet, create one by applying creator to class definition tree.

    returns

    the companion object symbol.

  35. def ensuring(cond: (Analyzer.Namer) ⇒ Boolean, msg: ⇒ Any): Analyzer.Namer

    Permalink
    Implicit information
    This member is added by an implicit conversion from Analyzer.Namer to Ensuring[Analyzer.Namer] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  36. def ensuring(cond: (Analyzer.Namer) ⇒ Boolean): Analyzer.Namer

    Permalink
    Implicit information
    This member is added by an implicit conversion from Analyzer.Namer to Ensuring[Analyzer.Namer] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  37. def ensuring(cond: Boolean, msg: ⇒ Any): Analyzer.Namer

    Permalink
    Implicit information
    This member is added by an implicit conversion from Analyzer.Namer to Ensuring[Analyzer.Namer] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  38. def ensuring(cond: Boolean): Analyzer.Namer

    Permalink
    Implicit information
    This member is added by an implicit conversion from Analyzer.Namer to Ensuring[Analyzer.Namer] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  39. def enterBeans(tree: Global.ValDef): Unit

    Permalink
    Attributes
    protected
    Definition Classes
    MethodSynth
  40. def enterClassDef(tree: Global.ClassDef): Unit

    Permalink
  41. def enterClassSymbol(tree: Global.ClassDef): Global.Symbol

    Permalink
  42. def enterDefDef(tree: Global.DefDef): Unit

    Permalink
  43. def enterExistingSym(sym: Global.Symbol, tree: Global.Tree): Analyzer.Context

    Permalink
  44. def enterGetterSetter(tree: Global.ValDef): Unit

    Permalink
    Definition Classes
    MethodSynth
  45. def enterIfNotThere(sym: Global.Symbol): Unit

    Permalink
  46. def enterImplicitWrapper(tree: Global.ClassDef): Unit

    Permalink
    Definition Classes
    MethodSynth
  47. def enterInScope(sym: Global.Symbol, scope: Global.Scope): Global.Symbol

    Permalink

    Enter symbol into given scope and return symbol itself

  48. def enterInScope(sym: Global.Symbol): Global.Symbol

    Permalink

    Enter symbol into context's scope and return symbol itself

  49. def enterLazyVal(tree: Global.ValDef, lazyAccessor: Global.Symbol): Global.TermSymbol

    Permalink
  50. def enterModuleDef(tree: Global.ModuleDef): Global.Symbol

    Permalink
  51. def enterModuleSymbol(tree: Global.ModuleDef): Global.Symbol

    Permalink

    Enter a module symbol.

  52. def enterPackage(tree: Global.PackageDef): Unit

    Permalink
  53. def enterSelf(self: Global.ValDef): Unit

    Permalink
  54. def enterStrictVal(tree: Global.ValDef): Global.TermSymbol

    Permalink
  55. def enterSym(tree: Global.Tree): Analyzer.Context

    Permalink
  56. def enterSyms(trees: List[Global.Tree]): Analyzer.Namer

    Permalink
  57. def enterSyntheticSym(tree: Global.Tree): Global.Symbol

    Permalink
  58. def enterTypeDef(tree: Global.TypeDef): Global.Symbol

    Permalink
  59. def enterValDef(tree: Global.ValDef): Unit

    Permalink
  60. def enterValSymbol(tree: Global.ValDef, sym: Global.TermSymbol): Global.TermSymbol

    Permalink
  61. def enterValueParams(vparamss: List[List[Global.ValDef]]): List[List[Global.Symbol]]

    Permalink
  62. final def eq(arg0: AnyRef): Boolean

    Permalink

    Tests whether the argument (that) is a reference to the receiver object (this).

    Tests whether the argument (that) is a reference to the receiver object (this).

    The eq method implements an equivalence relation on non-null instances of AnyRef, and has three additional properties:

    • It is consistent: for any non-null instances x and y of type AnyRef, multiple invocations of x.eq(y) consistently returns true or consistently returns false.
    • For any non-null instance x of type AnyRef, x.eq(null) and null.eq(x) returns false.
    • null.eq(null) returns true.

    When overriding the equals or hashCode methods, it is important to ensure that their behavior is consistent with reference equality. Therefore, if two objects are references to each other (o1 eq o2), they should be equal to each other (o1 == o2) and they should hash to the same value (o1.hashCode == o2.hashCode).

    returns

    true if the argument is a reference to the receiver object; false otherwise.

    Definition Classes
    AnyRef
  63. def equals(arg0: Any): Boolean

    Permalink

    The equality method for reference types.

    The equality method for reference types. Default implementation delegates to eq.

    See also equals in scala.Any.

    returns

    true if the receiver object is equivalent to the argument; false otherwise.

    Definition Classes
    AnyRef → Any
  64. def finalize(): Unit

    Permalink

    Called by the garbage collector on the receiver object when there are no more references to the object.

    Called by the garbage collector on the receiver object when there are no more references to the object.

    The details of when and if the finalize method is invoked, as well as the interaction between finalize and non-local returns and exceptions, are all platform dependent.

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
    Note

    not specified by SLS as a member of AnyRef

  65. def findCyclicalLowerBound(tp: Global.Type): Global.Symbol

    Permalink
  66. def formatted(fmtstr: String): String

    Permalink
    Implicit information
    This member is added by an implicit conversion from Analyzer.Namer to StringFormat[Analyzer.Namer] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  67. final def getClass(): Class[_]

    Permalink

    A representation that corresponds to the dynamic class of the receiver object.

    A representation that corresponds to the dynamic class of the receiver object.

    The nature of the representation is platform dependent.

    returns

    a representation that corresponds to the dynamic class of the receiver object.

    Definition Classes
    AnyRef → Any
    Note

    not specified by SLS as a member of AnyRef

  68. def handleSyntheticNameConflict(sym1: Global.Symbol, sym2: Global.Symbol): Unit

    Permalink

    Logic to handle name conflicts of synthetically generated symbols We handle right now: t6227

  69. def hasUnitType(sym: Global.Symbol): Boolean

    Permalink
    Definition Classes
    MethodSynth
  70. def hashCode(): Int

    Permalink

    The hashCode method for reference types.

    The hashCode method for reference types. See hashCode in scala.Any.

    returns

    the hash code value for this object.

    Definition Classes
    AnyRef → Any
  71. def inConstructorFlag: Long

    Permalink
  72. def includeParent(tpe: Global.Type, parent: Global.Symbol): Global.Type

    Permalink
  73. def isEnumConstant(vd: Global.ValDef): Boolean

    Permalink

    Determines whether this field holds an enum constant.

    Determines whether this field holds an enum constant. To qualify, the following conditions must be met:

    • The field's class has the ENUM flag set
    • The field's class extends java.lang.Enum
    • The field has the ENUM flag set
    • The field is static
    • The field is stable
  74. final def isInstanceOf[T0]: Boolean

    Permalink

    Test whether the dynamic type of the receiver object is T0.

    Test whether the dynamic type of the receiver object is T0.

    Note that the result of the test is modulo Scala's erasure semantics. Therefore the expression 1.isInstanceOf[String] will return false, while the expression List(1).isInstanceOf[List[String]] will return true. In the latter example, because the type argument is erased as part of compilation it is not possible to check whether the contents of the list are of the specified type.

    returns

    true if the receiver object is an instance of erasure of type T0; false otherwise.

    Definition Classes
    Any
  75. def moduleClassFlags(moduleFlags: Long): Long

    Permalink
  76. def moduleClassTypeCompleter(tree: Global.ModuleDef): Analyzer.TypeCompleter with Analyzer.LockingTypeCompleter with Global.FlagAgnosticCompleter

    Permalink
  77. def monoTypeCompleter(tree: Global.Tree): Analyzer.TypeCompleter with Analyzer.LockingTypeCompleter with Global.FlagAgnosticCompleter

    Permalink
  78. def namerOf(sym: Global.Symbol): Analyzer.Namer

    Permalink
  79. final def ne(arg0: AnyRef): Boolean

    Permalink

    Equivalent to !(this eq that).

    Equivalent to !(this eq that).

    returns

    true if the argument is not a reference to the receiver object; false otherwise.

    Definition Classes
    AnyRef
  80. def noEnterGetterSetter(vd: Global.ValDef): Boolean

    Permalink
  81. def noFinishGetterSetter(vd: Global.ValDef): Boolean

    Permalink
  82. final def notify(): Unit

    Permalink

    Wakes up a single thread that is waiting on the receiver object's monitor.

    Wakes up a single thread that is waiting on the receiver object's monitor.

    Definition Classes
    AnyRef
    Note

    not specified by SLS as a member of AnyRef

  83. final def notifyAll(): Unit

    Permalink

    Wakes up all threads that are waiting on the receiver object's monitor.

    Wakes up all threads that are waiting on the receiver object's monitor.

    Definition Classes
    AnyRef
    Note

    not specified by SLS as a member of AnyRef

  84. def owner: Global.Symbol

    Permalink
    Attributes
    protected
  85. def saveDefaultGetter(meth: Global.Symbol, default: Global.Symbol): Unit

    Permalink
  86. def selfTypeCompleter(tree: Global.Tree): Analyzer.TypeCompleter with Analyzer.LockingTypeCompleter with Global.FlagAgnosticCompleter

    Permalink
  87. def setPrivateWithin(tree: Global.MemberDef, sym: Global.Symbol): Global.Symbol

    Permalink
  88. def setPrivateWithin[T <: Global.Symbol](tree: Global.Tree, sym: T, mods: Global.Modifiers): T

    Permalink
  89. def standardAccessors(vd: Global.ValDef): List[DerivedFromValDef]

    Permalink
    Definition Classes
    MethodSynth
  90. def standardEnsureCompanionObject(cdef: Global.ClassDef, creator: (Global.ClassDef) ⇒ Global.Tree = companionModuleDef(_)): Global.Symbol

    Permalink

    Default implementation of ensureCompanionObject.

    Default implementation of ensureCompanionObject. Can be overridden by analyzer plugins (see AnalyzerPlugins.pluginsEnsureCompanionObject for more details)

  91. def standardEnterSym(tree: Global.Tree): Analyzer.Context

    Permalink

    Default implementation of enterSym.

    Default implementation of enterSym. Can be overridden by analyzer plugins (see AnalyzerPlugins.pluginsEnterSym for more details)

  92. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  93. def toString(): String

    Permalink

    Creates a String representation of this object.

    Creates a String representation of this object. The default representation is platform dependent. On the java platform it is the concatenation of the class name, "@", and the object's hashcode in hexadecimal.

    returns

    a String representation of the object.

    Definition Classes
    AnyRef → Any
  94. def typeErrorHandler[T](tree: Global.Tree, alt: T): PartialFunction[Throwable, T]

    Permalink
  95. def typeSig(tree: Global.Tree): Global.Type

    Permalink

    TypeSig is invoked by monoTypeCompleters.

    TypeSig is invoked by monoTypeCompleters. It returns the type of a definition which is then assigned to the corresponding symbol (typeSig itself does not need to assign the type to the symbol, but it can if necessary).

  96. val typer: Analyzer.Typer

    Permalink
  97. def updatePosFlags(sym: Global.Symbol, pos: Global.Position, flags: Long): Global.Symbol

    Permalink
  98. def validate(sym: Global.Symbol): Unit

    Permalink

    Check that symbol's definition is well-formed.

    Check that symbol's definition is well-formed. This means:

    • no conflicting modifiers
    • abstract modifier only for classes
    • override modifier never for classes
    • def modifier never for parameters of case classes
    • declarations only in mixins or abstract classes (when not @native)
  99. def validateCompanionDefs(tree: Global.ImplDef): Unit

    Permalink

    Given a ClassDef or ModuleDef, verifies there isn't a companion which has been defined in a separate file.

  100. def validateParam(tree: Global.ValDef): Unit

    Permalink
    Definition Classes
    MethodSynth
  101. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  102. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  103. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  104. def [B](y: B): (Analyzer.Namer, B)

    Permalink
    Implicit information
    This member is added by an implicit conversion from Analyzer.Namer to ArrowAssoc[Analyzer.Namer] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc

Inherited from Analyzer.MethodSynth

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion any2stringadd from Analyzer.Namer to any2stringadd[Analyzer.Namer]

Inherited by implicit conversion StringFormat from Analyzer.Namer to StringFormat[Analyzer.Namer]

Inherited by implicit conversion Ensuring from Analyzer.Namer to Ensuring[Analyzer.Namer]

Inherited by implicit conversion ArrowAssoc from Analyzer.Namer to ArrowAssoc[Analyzer.Namer]

Ungrouped