object SyntacticImport extends SyntacticImportExtractor
Facade over Imports and ImportSelectors that lets to structurally deconstruct/reconstruct them.
Selectors are represented in the following way:
- q"import foo._" <==> q"import foo.${pq"_"}" 2. q"import foo.bar" <==> q"import foo.${pq"bar"}" 3. q"import foo.{bar => baz}" <==> q"import foo.${pq"bar -> baz"}" 4. q"import foo.{bar => _}" <==> q"import foo.${pq"bar -> _"}"
All names in selectors are TermNames despite the fact ImportSelector can theoretically contain TypeNames too (but they never do in practice.)
- Definition Classes
- ReificationSupportImpl → ReificationSupportApi
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- SyntacticImport
- SyntacticImportExtractor
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- All
Value Members
-
final
def
!=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
##(): Int
- Definition Classes
- AnyRef → Any
-
final
def
==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
def
apply(expr: SymbolTable.Tree, selectors: List[SymbolTable.Tree]): SymbolTable.Import
- Definition Classes
- SyntacticImport → SyntacticImportExtractor
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
-
def
clone(): AnyRef
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @native() @throws( ... )
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
equals(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
def
finalize(): Unit
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( classOf[java.lang.Throwable] )
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
def
hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
-
final
def
ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
final
def
notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
final
def
notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
-
def
toString(): String
- Definition Classes
- AnyRef → Any
-
def
unapply(imp: SymbolTable.Import): Some[(SymbolTable.Tree, List[SymbolTable.Tree])]
- Definition Classes
- SyntacticImport → SyntacticImportExtractor
-
final
def
wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @throws( ... )