org.ensime

api

package api

Visibility
  1. Public
  2. All

Type Members

  1. final case class AddImportRefactorDesc(qualifiedName: String, file: File) extends RefactorDesc with Product with Serializable

  2. final case class ArrowTypeInfo(name: String, fullName: String, resultType: TypeInfo, paramSections: Iterable[ParamSectionInfo]) extends TypeInfo with Product with Serializable

  3. final case class AstAtPointReq(file: SourceFileInfo, offset: OffsetRange) extends RpcAnalyserRequest with Product with Serializable

    Responds with ASTInfo

  4. final case class AstInfo(ast: String) extends RpcResponse with Product with Serializable

  5. final case class BasicTypeInfo(name: String, declAs: DeclaredAs, fullName: String, typeArgs: Iterable[TypeInfo], members: Iterable[EntityInfo], pos: Option[SourcePosition]) extends TypeInfo with Product with Serializable

  6. final case class Breakpoint(file: File, line: Int) extends RpcResponse with Product with Serializable

  7. final case class BreakpointList(active: List[Breakpoint], pending: List[Breakpoint]) extends RpcResponse with Product with Serializable

  8. final case class CompletionInfo(typeInfo: Option[TypeInfo], name: String, typeSig: CompletionSignature, isCallable: Boolean, relevance: Int, toInsert: Option[String]) extends RpcResponse with Product with Serializable

  9. final case class CompletionInfoList(prefix: String, completions: List[CompletionInfo]) extends RpcResponse with Product with Serializable

  10. final case class CompletionSignature(sections: List[List[(String, String)]], result: String, hasImplicit: Boolean) extends Product with Serializable

    Annotations
    @deprecating( detail = "not type safe" )
  11. final case class CompletionsReq(fileInfo: SourceFileInfo, point: Int, maxResults: Int, caseSens: Boolean, reload: Boolean) extends RpcAnalyserRequest with Product with Serializable

    Responds with a CompletionInfoList.

  12. final case class ConnectionInfo(pid: Option[Int] = scala.None, implementation: EnsimeImplementation = ..., version: String = "1.0") extends RpcResponse with Product with Serializable

  13. final case class DebugArrayElement(objectId: DebugObjectId, index: Int) extends DebugLocation with Product with Serializable

  14. final case class DebugArrayInstance(length: Int, typeName: String, elementTypeName: String, objectId: DebugObjectId) extends DebugValue with Product with Serializable

  15. final case class DebugAttachReq(hostname: String, port: String) extends RpcDebuggerRequest with Product with Serializable

    Responds with DebugVmStatus.

  16. final case class DebugBacktrace(frames: List[DebugStackFrame], threadId: DebugThreadId, threadName: String) extends RpcResponse with Product with Serializable

  17. final case class DebugBacktraceReq(threadId: DebugThreadId, index: Int, count: Int) extends RpcDebuggerRequest with Product with Serializable

    Responds with a DebugBacktrace.

  18. final case class DebugBreakEvent(threadId: DebugThreadId, threadName: String, file: File, line: Int) extends DebugEvent with Product with Serializable

    The debugged VM has stopped at a breakpoint.

  19. final case class DebugClassField(index: Int, name: String, typeName: String, summary: String) extends RpcResponse with Product with Serializable

  20. final case class DebugClearBreakReq(file: File, line: Int) extends RpcDebuggerRequest with Product with Serializable

    Responds with a VoidResponse.

  21. final case class DebugContinueReq(threadId: DebugThreadId) extends RpcDebuggerRequest with Product with Serializable

    Request to continue the execution of the given thread.

  22. sealed trait DebugEvent extends EnsimeEvent

  23. final case class DebugExceptionEvent(exception: Long, threadId: DebugThreadId, threadName: String, file: Option[File], line: Option[Int]) extends DebugEvent with Product with Serializable

    The debugged VM has thrown an exception and is now paused waiting for control.

  24. final case class DebugLocateNameReq(threadId: DebugThreadId, name: String) extends RpcDebuggerRequest with Product with Serializable

    Responds with a DebugLocation if successful, or FalseResponse.

  25. sealed trait DebugLocation extends RpcResponse

  26. final case class DebugNextReq(threadId: DebugThreadId) extends RpcDebuggerRequest with Product with Serializable

    Responds with a FalseResponse or a TrueResponse.

  27. final case class DebugNullValue(typeName: String) extends DebugValue with Product with Serializable

  28. final case class DebugObjectField(objectId: DebugObjectId, field: String) extends DebugLocation with Product with Serializable

  29. final case class DebugObjectId(id: Long) extends Product with Serializable

  30. final case class DebugObjectInstance(summary: String, fields: List[DebugClassField], typeName: String, objectId: DebugObjectId) extends DebugValue with Product with Serializable

  31. final case class DebugObjectReference(objectId: DebugObjectId) extends DebugLocation with Product with Serializable

  32. final case class DebugOutputEvent(body: String) extends DebugEvent with Product with Serializable

    Communicates stdout/stderr of debugged VM to client.

  33. final case class DebugPrimitiveValue(summary: String, typeName: String) extends DebugValue with Product with Serializable

  34. final case class DebugSetBreakReq(file: File, line: Int) extends RpcDebuggerRequest with Product with Serializable

    Responds with a VoidResponse.

  35. final case class DebugSetValueReq(loc: DebugLocation, newValue: String) extends RpcDebuggerRequest with Product with Serializable

    Request to update a field value within the debugged VM.

  36. final case class DebugStackFrame(index: Int, locals: List[DebugStackLocal], numArgs: Int, className: String, methodName: String, pcLocation: LineSourcePosition, thisObjectId: DebugObjectId) extends RpcResponse with Product with Serializable

  37. final case class DebugStackLocal(index: Int, name: String, summary: String, typeName: String) extends RpcResponse with Product with Serializable

  38. final case class DebugStackSlot(threadId: DebugThreadId, frame: Int, offset: Int) extends DebugLocation with Product with Serializable

  39. final case class DebugStepEvent(threadId: DebugThreadId, threadName: String, file: File, line: Int) extends DebugEvent with Product with Serializable

    The debugged VM has stepped to a new location and is now paused awaiting control.

  40. final case class DebugStepOutReq(threadId: DebugThreadId) extends RpcDebuggerRequest with Product with Serializable

    Responds with a FalseResponse or a TrueResponse.

  41. final case class DebugStepReq(threadId: DebugThreadId) extends RpcDebuggerRequest with Product with Serializable

    Responds with a FalseResponse or a TrueResponse.

  42. final case class DebugStringInstance(summary: String, fields: List[DebugClassField], typeName: String, objectId: DebugObjectId) extends DebugValue with Product with Serializable

  43. final case class DebugThreadDeathEvent(threadId: DebugThreadId) extends DebugEvent with Product with Serializable

    A thread has died.

  44. final case class DebugThreadId(id: Long) extends Product with Serializable

    A debugger thread id.

  45. final case class DebugThreadStartEvent(threadId: DebugThreadId) extends DebugEvent with Product with Serializable

    A new thread has started.

  46. final case class DebugToStringReq(threadId: DebugThreadId, loc: DebugLocation) extends RpcDebuggerRequest with Product with Serializable

    Responds with a StringResponse if successful, or FalseResponse.

  47. sealed trait DebugValue extends RpcResponse

  48. final case class DebugValueReq(loc: DebugLocation) extends RpcDebuggerRequest with Product with Serializable

    Responds with a DebugValue if successful, or FalseResponse.

  49. final case class DebugVmError(errorCode: Int, details: String, status: String = "error") extends DebugVmStatus with Product with Serializable

  50. sealed trait DebugVmStatus extends RpcResponse

  51. final case class DebugVmSuccess(status: String = "success") extends DebugVmStatus with Product with Serializable

  52. sealed abstract class DeclaredAs extends AnyRef

  53. final case class DeleteFile(file: File, from: Int, to: Int, text: String) extends FileEdit with Product with Serializable

  54. final case class DocUriAtPointReq(file: Either[File, SourceFileInfo], point: OffsetRange) extends RpcAnalyserRequest with Product with Serializable

    Responds with a StringResponse for the URL of the documentation if valid, or FalseResponse.

  55. final case class DocUriForSymbolReq(typeFullName: String, memberName: Option[String], signatureString: Option[String]) extends RpcAnalyserRequest with Product with Serializable

    Responds with a StringResponse for the URL of the documentation if valid, or FalseResponse.

  56. final case class ERangePosition(file: String, offset: Int, start: Int, end: Int) extends Product with Serializable

    ERangePosition is a mirror of scala compiler internal RangePosition as a case class to

  57. final case class ERangePositions(positions: List[ERangePosition]) extends RpcResponse with Product with Serializable

  58. final case class EmptySourcePosition() extends SourcePosition with Product with Serializable

  59. final case class EnsimeConfig(rootDir: File, cacheDir: File, javaHome: File, name: String, scalaVersion: String, compilerArgs: List[String], referenceSourceRoots: List[File], subprojects: List[EnsimeModule], formattingPrefs: FormattingPreferences, sourceMode: Boolean, javaLibs: List[File], disableSourceMonitoring: Boolean = false, disableClassMonitoring: Boolean = false) extends Product with Serializable

  60. sealed trait EnsimeEvent extends EnsimeServerMessage

    A message that the server can send to the client at any time.

  61. final case class EnsimeImplementation(name: String) extends Product with Serializable

  62. final case class EnsimeModule(name: String, targets: List[File], testTargets: List[File], dependsOnModules: List[String], compileDeps: List[File], testDeps: List[File], sourceRoots: List[File], docJars: List[File], referenceSourceRoots: List[File]) extends Product with Serializable

  63. final case class EnsimeServerError(description: String) extends RpcResponse with Product with Serializable

  64. sealed trait EnsimeServerMessage extends AnyRef

  65. sealed trait EntityInfo extends RpcResponse

  66. final case class ExpandSelectionReq(file: File, start: Int, end: Int) extends RpcAnalyserRequest with Product with Serializable

    Responds with a FileRange.

  67. final case class ExtractLocalRefactorDesc(name: String, file: File, start: Int, end: Int) extends RefactorDesc with Product with Serializable

  68. final case class ExtractMethodRefactorDesc(methodName: String, file: File, start: Int, end: Int) extends RefactorDesc with Product with Serializable

  69. sealed trait FileEdit extends Ordered[FileEdit]

  70. final case class FileRange(file: String, start: Int, end: Int) extends RpcResponse with Product with Serializable

  71. final case class FormatOneSourceReq(file: SourceFileInfo) extends RpcAnalyserRequest with Product with Serializable

    Responds with the formatted file as a StringResponse.

  72. final case class FormatSourceReq(files: List[File]) extends RpcAnalyserRequest with Product with Serializable

    Responds with VoidResponse.

  73. sealed trait GeneralSwankEvent extends EnsimeEvent

  74. final case class ImplicitConversionInfo(start: Int, end: Int, fun: SymbolInfo) extends ImplicitInfo with Product with Serializable

  75. sealed trait ImplicitInfo extends AnyRef

  76. final case class ImplicitInfoReq(file: Either[File, SourceFileInfo], range: OffsetRange) extends RpcAnalyserRequest with Product with Serializable

    Request details about implicit conversions applied inside the given range.

  77. final case class ImplicitInfos(infos: List[ImplicitInfo]) extends RpcResponse with Product with Serializable

  78. final case class ImplicitParamInfo(start: Int, end: Int, fun: SymbolInfo, params: List[SymbolInfo], funIsImplicit: Boolean) extends ImplicitInfo with Product with Serializable

  79. final case class ImportSuggestions(symLists: List[List[SymbolSearchResult]]) extends RpcResponse with Product with Serializable

  80. final case class ImportSuggestionsReq(file: Either[File, SourceFileInfo], point: Int, names: List[String], maxResults: Int) extends RpcSearchRequest with Product with Serializable

    Responds with [ImportSuggestions].

  81. final case class InlineLocalRefactorDesc(file: File, start: Int, end: Int) extends RefactorDesc with Product with Serializable

  82. final case class InspectPackageByPathReq(path: String) extends RpcAnalyserRequest with Product with Serializable

    Responds with PackageInfo.

  83. final case class InspectTypeAtPointReq(file: Either[File, SourceFileInfo], range: OffsetRange) extends RpcAnalyserRequest with Product with Serializable

    Request detailed type information about the item at the given file position.

  84. final case class InspectTypeByNameReq(name: String) extends RpcAnalyserRequest with Product with Serializable

    Request detailed type description by fully qualified class name.

  85. final case class InterfaceInfo(type: TypeInfo, viaView: Option[String]) extends RpcResponse with Product with Serializable

  86. sealed trait LegacyRawResponse extends RpcResponse

  87. final case class LineSourcePosition(file: File, line: Int) extends SourcePosition with Product with Serializable

  88. final case class MethodBytecode(className: String, methodName: String, methodSignature: Option[String], byteCode: List[Op], startLine: Int, endLine: Int) extends Product with Serializable

  89. final case class MethodSearchResult(name: String, localName: String, declAs: DeclaredAs, pos: Option[SourcePosition], ownerName: String) extends SymbolSearchResult with Product with Serializable

  90. final case class NamedTypeMemberInfo(name: String, type: TypeInfo, pos: Option[SourcePosition], signatureString: Option[String], declAs: DeclaredAs) extends EntityInfo with Product with Serializable

  91. final case class NewFile(file: File, from: Int, to: Int, text: String) extends FileEdit with Product with Serializable

  92. final case class NewJavaNotesEvent(isFull: Boolean, notes: List[Note]) extends GeneralSwankEvent with Product with Serializable

    The presentation compiler is providing notes: e.

  93. final case class NewScalaNotesEvent(isFull: Boolean, notes: List[Note]) extends GeneralSwankEvent with Product with Serializable

    The presentation compiler is providing notes: e.

  94. final case class Note(file: String, msg: String, severity: NoteSeverity, beg: Int, end: Int, line: Int, col: Int) extends RpcResponse with Product with Serializable

  95. sealed trait NoteSeverity extends AnyRef

  96. final case class OffsetRange(from: Int, to: Int) extends Product with Serializable

  97. final case class OffsetSourcePosition(file: File, offset: Int) extends SourcePosition with Product with Serializable

  98. final case class Op(op: String, description: String) extends Product with Serializable

  99. final case class OrganiseImportsRefactorDesc(file: File) extends RefactorDesc with Product with Serializable

  100. final case class PackageInfo(name: String, fullName: String, members: Seq[EntityInfo]) extends EntityInfo with Product with Serializable

  101. final case class PackageMemberCompletionReq(path: String, prefix: String) extends RpcAnalyserRequest with Product with Serializable

    Responds with a List[CompletionInfo].

  102. final case class ParamSectionInfo(params: Iterable[(String, TypeInfo)], isImplicit: Boolean) extends Product with Serializable

  103. final case class PatchDelete(start: Int, end: Int) extends PatchOp with Product with Serializable

  104. final case class PatchInsert(start: Int, text: String) extends PatchOp with Product with Serializable

  105. sealed trait PatchOp extends AnyRef

  106. final case class PatchReplace(start: Int, end: Int, text: String) extends PatchOp with Product with Serializable

  107. sealed trait PosNeeded extends AnyRef

  108. final case class PublicSymbolSearchReq(keywords: List[String], maxResults: Int) extends RpcSearchRequest with Product with Serializable

    Responds with SymbolSearchResults.

  109. sealed abstract class RefactorDesc extends AnyRef

  110. final case class RefactorDiffEffect(procedureId: Int, refactorType: RefactorType, diff: File) extends RpcResponse with RefactorProcedure with Product with Serializable

  111. final case class RefactorFailure(procedureId: Int, reason: String, status: Symbol = scala.Symbol.apply("failure")) extends RpcResponse with Product with Serializable

  112. sealed abstract class RefactorLocation extends AnyRef

  113. trait RefactorProcedure extends AnyRef

  114. final case class RefactorReq(procId: Int, params: RefactorDesc, interactive: Boolean) extends RpcAnalyserRequest with Product with Serializable

    Responds with a RefactorFailure or a RefactorDiffEffect.

  115. sealed abstract class RefactorType extends AnyRef

  116. final case class RemoveFileReq(file: File) extends RpcAnalyserRequest with Product with Serializable

    Responds with a VoidResponse.

  117. final case class RenameRefactorDesc(newName: String, file: File, start: Int, end: Int) extends RefactorDesc with Product with Serializable

  118. sealed trait RpcAnalyserRequest extends RpcRequest

  119. sealed trait RpcDebuggerRequest extends RpcRequest

  120. sealed trait RpcRequest extends AnyRef

    All messages into the ENSIME server from the client are part of this family.

  121. final case class RpcRequestEnvelope(req: RpcRequest, callId: Int) extends Product with Serializable

  122. sealed trait RpcResponse extends EnsimeServerMessage

  123. final case class RpcResponseEnvelope(callId: Option[Int], payload: EnsimeServerMessage) extends Product with Serializable

    There should be exactly one RpcResponseEnvelope in response to an RpcRequestEnvelope.

  124. sealed trait RpcSearchRequest extends RpcRequest

  125. sealed trait RpcStartupRequest extends RpcRequest

  126. final case class SendBackgroundMessageEvent(detail: String, code: Int = 105) extends GeneralSwankEvent with Product with Serializable

    Generic background notification.

  127. final case class SourceFileInfo(file: File, contents: Option[String] = scala.None, contentsIn: Option[File] = scala.None) extends Product with Serializable

  128. sealed trait SourcePosition extends RpcResponse

  129. sealed trait SourceSymbol extends AnyRef

  130. final case class StringResponse(text: String) extends LegacyRawResponse with Product with Serializable

  131. final case class StructureView(view: List[StructureViewMember]) extends RpcResponse with Product with Serializable

  132. final case class StructureViewMember(keyword: String, name: String, position: SourcePosition, members: List[StructureViewMember]) extends Product with Serializable

  133. final case class StructureViewReq(fileInfo: SourceFileInfo) extends RpcAnalyserRequest with Product with Serializable

    Responds with a StructureView.

  134. final case class SymbolAtPointReq(file: Either[File, SourceFileInfo], point: Int) extends RpcAnalyserRequest with Product with Serializable

    Responds with a SymbolInfo if valid, or FalseResponse.

  135. final case class SymbolByNameReq(typeFullName: String, memberName: Option[String], signatureString: Option[String]) extends RpcAnalyserRequest with Product with Serializable

    Request detailed symbol description by fully qualified symbol name.

  136. final case class SymbolDesignation(start: Int, end: Int, symType: SourceSymbol) extends Product with Serializable

  137. final case class SymbolDesignations(file: File, syms: List[SymbolDesignation]) extends RpcResponse with Product with Serializable

  138. final case class SymbolDesignationsReq(file: Either[File, SourceFileInfo], start: Int, end: Int, requestedTypes: List[SourceSymbol]) extends RpcAnalyserRequest with Product with Serializable

    Request the semantic classes of symbols in the given range.

  139. final case class SymbolInfo(name: String, localName: String, declPos: Option[SourcePosition], type: TypeInfo, isCallable: Boolean) extends RpcResponse with Product with Serializable

  140. sealed trait SymbolSearchResult extends RpcResponse

  141. final case class SymbolSearchResults(syms: List[SymbolSearchResult]) extends RpcResponse with Product with Serializable

  142. final case class TextEdit(file: File, from: Int, to: Int, text: String) extends FileEdit with Product with Serializable

  143. final case class TypeAtPointReq(file: Either[File, SourceFileInfo], range: OffsetRange) extends RpcAnalyserRequest with Product with Serializable

    Responds with TypeInfo if valid, or FalseResponse.

  144. final case class TypeByNameAtPointReq(name: String, file: Either[File, SourceFileInfo], range: OffsetRange) extends RpcAnalyserRequest with Product with Serializable

    Responds with TypeInfo if valid, or FalseResponse.

  145. final case class TypeByNameReq(name: String) extends RpcAnalyserRequest with Product with Serializable

    Responds with TypeInfo if valid, or FalseResponse.

  146. sealed trait TypeInfo extends EntityInfo

  147. final case class TypeInspectInfo(type: TypeInfo, interfaces: Iterable[InterfaceInfo], infoType: Symbol = scala.Symbol.apply("typeInspect")) extends RpcResponse with Product with Serializable

  148. final case class TypeSearchResult(name: String, localName: String, declAs: DeclaredAs, pos: Option[SourcePosition]) extends SymbolSearchResult with Product with Serializable

  149. final case class TypecheckFileReq(fileInfo: SourceFileInfo) extends RpcAnalyserRequest with Product with Serializable

    Responds with a VoidResponse.

  150. final case class TypecheckFilesReq(files: List[Either[File, SourceFileInfo]]) extends RpcAnalyserRequest with Product with Serializable

    Responds with a VoidResponse.

  151. final case class TypecheckModule(module: String) extends RpcAnalyserRequest with Product with Serializable

    Response with a VoidResponse.

  152. final case class UnloadModuleReq(module: String) extends RpcAnalyserRequest with Product with Serializable

    Response with a VoidResponse.

  153. final case class UsesOfSymbolAtPointReq(file: Either[File, SourceFileInfo], point: Int) extends RpcAnalyserRequest with Product with Serializable

    Responds with ERangePositions.

  154. class deprecating extends Annotation with StaticAnnotation

    Indicates that something will be removed.

Value Members

  1. object AnalyzerReadyEvent extends GeneralSwankEvent with Product with Serializable

    The presentation compiler is ready to accept requests.

  2. object AskReTypecheck extends Product with Serializable

  3. object ClassSymbol extends SourceSymbol with Product with Serializable

  4. object ClearAllJavaNotesEvent extends GeneralSwankEvent with Product with Serializable

    The presentation compiler has invalidated all existing notes.

  5. object ClearAllScalaNotesEvent extends GeneralSwankEvent with Product with Serializable

    The presentation compiler has invalidated all existing notes.

  6. object CompilerRestartedEvent extends GeneralSwankEvent with Product with Serializable

    The presentation compiler was restarted.

  7. object ConnectionInfoReq extends RpcStartupRequest with Product with Serializable

    Responds with a ConnectionInfo.

  8. object ConstructorSymbol extends SourceSymbol with Product with Serializable

  9. object DebugActiveVmReq extends RpcDebuggerRequest with Product with Serializable

    Query whether we are in an active debug session Responds with a TrueResponse or a FalseResponse.

  10. object DebugClearAllBreaksReq extends RpcDebuggerRequest with Product with Serializable

    Responds with a VoidResponse.

  11. object DebugListBreakpointsReq extends RpcDebuggerRequest with Product with Serializable

    Responds with a BreakpointList.

  12. object DebugObjectId extends Serializable

  13. object DebugObjectReference extends Serializable

  14. object DebugRunReq extends RpcDebuggerRequest with Product with Serializable

    Responds with a FalseResponse or a TrueResponse.

  15. object DebugStopReq extends RpcDebuggerRequest with Product with Serializable

    Responds with a FalseResponse or a TrueResponse.

  16. object DebugThreadId extends Serializable

  17. object DebugVMDisconnectEvent extends DebugEvent with Product with Serializable

    The debugger has disconnected from the debugged VM.

  18. object DebugVMStartEvent extends DebugEvent with Product with Serializable

    The debugged VM has started.

  19. object DebuggerShutdownEvent extends Product with Serializable

  20. object DeclaredAs

  21. object DeleteFile extends Serializable

  22. object DeprecatedSymbol extends SourceSymbol with Product with Serializable

  23. object FalseResponse extends LegacyRawResponse with Product with Serializable

  24. object FullTypeCheckCompleteEvent extends GeneralSwankEvent with Product with Serializable

    The presentation compiler has finished analysing the entire project.

  25. object FunctionCallSymbol extends SourceSymbol with Product with Serializable

  26. object ImplicitConversionSymbol extends SourceSymbol with Product with Serializable

  27. object ImplicitParamsSymbol extends SourceSymbol with Product with Serializable

  28. object ImportedNameSymbol extends SourceSymbol with Product with Serializable

  29. object IndexerReadyEvent extends GeneralSwankEvent with Product with Serializable

    The search engine has finished indexing the classpath.

  30. object NewFile extends Serializable

  31. object NoteError extends NoteSeverity with Product with Serializable

  32. object NoteInfo extends NoteSeverity with Product with Serializable

  33. object NoteSeverity

  34. object NoteWarn extends NoteSeverity with Product with Serializable

  35. object ObjectSymbol extends SourceSymbol with Product with Serializable

  36. object OffsetRange extends (Int, Int) ⇒ OffsetRange with Serializable

  37. object OperatorFieldSymbol extends SourceSymbol with Product with Serializable

  38. object PackageSymbol extends SourceSymbol with Product with Serializable

  39. object ParamSymbol extends SourceSymbol with Product with Serializable

  40. object PosNeededAvail extends PosNeeded with Product with Serializable

  41. object PosNeededNo extends PosNeeded with Product with Serializable

  42. object PosNeededYes extends PosNeeded with Product with Serializable

  43. object RefactorLocation

  44. object RefactorType

  45. object ReloadExistingFilesEvent extends Product with Serializable

  46. object SourceSymbol

  47. object TraitSymbol extends SourceSymbol with Product with Serializable

  48. object TrueResponse extends LegacyRawResponse with Product with Serializable

  49. object TypeParamSymbol extends SourceSymbol with Product with Serializable

  50. object TypecheckAllReq extends RpcAnalyserRequest with Product with Serializable

    Responds with a VoidResponse.

  51. object UnloadAllReq extends RpcAnalyserRequest with Product with Serializable

    Responds with a VoidResponse.

  52. object ValFieldSymbol extends SourceSymbol with Product with Serializable

  53. object ValSymbol extends SourceSymbol with Product with Serializable

  54. object VarFieldSymbol extends SourceSymbol with Product with Serializable

  55. object VarSymbol extends SourceSymbol with Product with Serializable

  56. object VoidResponse extends RpcResponse with Product with Serializable

Ungrouped