class AstCreator extends AstCreatorBase with AstForExpressionsCreator with AstForPrimitivesCreator with AstForTypesCreator with AstForFunctionsCreator with AstForDeclarationsCreator with AstForStatementsCreator with AstForTemplateDomCreator with AstNodeBuilder with TypeHelper with AstCreatorHelper

Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. AstCreator
  2. AstCreatorHelper
  3. TypeHelper
  4. AstNodeBuilder
  5. AstForTemplateDomCreator
  6. AstForStatementsCreator
  7. AstForDeclarationsCreator
  8. AstForFunctionsCreator
  9. AstForTypesCreator
  10. AstForPrimitivesCreator
  11. AstForExpressionsCreator
  12. AstCreatorBase
  13. AnyRef
  14. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new AstCreator(config: Config, parserResult: ParseResult, usedTypes: ConcurrentHashMap[(String, String), Boolean])

Type Members

  1. case class MethodAst(ast: Ast, methodNode: NewMethod) extends Product with Serializable
    Definition Classes
    AstForFunctionsCreator

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. def absolutePath(filename: String): String
    Definition Classes
    AstCreator → AstCreatorBase
  5. def addModifier(node: NewNode, json: Value): Unit
    Attributes
    protected
    Definition Classes
    AstForTypesCreator
  6. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  7. def astForArrayExpression(arrExpr: BabelNodeInfo): Ast
    Attributes
    protected
    Definition Classes
    AstForExpressionsCreator
  8. def astForAssignmentExpression(assignment: BabelNodeInfo): Ast
    Attributes
    protected
    Definition Classes
    AstForExpressionsCreator
  9. def astForAwaitExpression(awaitExpr: BabelNodeInfo): Ast
    Attributes
    protected
    Definition Classes
    AstForExpressionsCreator
  10. def astForBigIntLiteral(bigIntLiteral: BabelNodeInfo): Ast
    Attributes
    protected
    Definition Classes
    AstForPrimitivesCreator
  11. def astForBinaryExpression(binExpr: BabelNodeInfo): Ast
    Attributes
    protected
    Definition Classes
    AstForExpressionsCreator
  12. def astForBlockStatement(block: BabelNodeInfo): Ast
    Attributes
    protected
    Definition Classes
    AstForStatementsCreator
  13. def astForBooleanLiteral(booleanLiteral: BabelNodeInfo): Ast
    Attributes
    protected
    Definition Classes
    AstForPrimitivesCreator
  14. def astForBreakStatement(breakStmt: BabelNodeInfo): Ast
    Attributes
    protected
    Definition Classes
    AstForStatementsCreator
  15. def astForCallExpression(callExpr: BabelNodeInfo): Ast
    Attributes
    protected
    Definition Classes
    AstForExpressionsCreator
  16. def astForCastExpression(castExpr: BabelNodeInfo): Ast
    Attributes
    protected
    Definition Classes
    AstForExpressionsCreator
  17. def astForClass(clazz: BabelNodeInfo): Ast
    Attributes
    protected
    Definition Classes
    AstForTypesCreator
  18. def astForConditionalExpression(ternary: BabelNodeInfo): Ast
    Attributes
    protected
    Definition Classes
    AstForExpressionsCreator
  19. def astForContinueStatement(continueStmt: BabelNodeInfo): Ast
    Attributes
    protected
    Definition Classes
    AstForStatementsCreator
  20. def astForDecimalLiteral(decimalLiteral: BabelNodeInfo): Ast
    Attributes
    protected
    Definition Classes
    AstForPrimitivesCreator
  21. def astForDeconstruction(pattern: BabelNodeInfo, sourceAst: Ast, paramName: Option[String] = None): Ast
    Attributes
    protected
    Definition Classes
    AstForDeclarationsCreator
  22. def astForDoWhileStatement(doWhileStmt: BabelNodeInfo): Ast
    Attributes
    protected
    Definition Classes
    AstForStatementsCreator
  23. def astForEnum(tsEnum: BabelNodeInfo): Ast
    Attributes
    protected
    Definition Classes
    AstForTypesCreator
  24. def astForExportAllDeclaration(declaration: BabelNodeInfo): Ast
    Attributes
    protected
    Definition Classes
    AstForDeclarationsCreator
  25. def astForExportAssignment(assignment: BabelNodeInfo): Ast
    Attributes
    protected
    Definition Classes
    AstForDeclarationsCreator
  26. def astForExportDefaultDeclaration(declaration: BabelNodeInfo): Ast
    Attributes
    protected
    Definition Classes
    AstForDeclarationsCreator
  27. def astForExportNamedDeclaration(declaration: BabelNodeInfo): Ast
    Attributes
    protected
    Definition Classes
    AstForDeclarationsCreator
  28. def astForExpressionStatement(exprStmt: BabelNodeInfo): Ast
    Attributes
    protected
    Definition Classes
    AstForExpressionsCreator
  29. def astForForStatement(forStmt: BabelNodeInfo): Ast
    Attributes
    protected
    Definition Classes
    AstForStatementsCreator
  30. def astForFunctionDeclaration(func: BabelNodeInfo, shouldCreateFunctionReference: Boolean = false, shouldCreateAssignmentCall: Boolean = false): Ast
    Attributes
    protected
    Definition Classes
    AstForFunctionsCreator
  31. def astForIdentifier(ident: BabelNodeInfo): Ast
    Attributes
    protected
    Definition Classes
    AstForPrimitivesCreator
  32. def astForIfStatement(ifStmt: BabelNodeInfo): Ast
    Definition Classes
    AstForStatementsCreator
  33. def astForImportDeclaration(impDecl: BabelNodeInfo): Ast
    Attributes
    protected
    Definition Classes
    AstForDeclarationsCreator
  34. def astForImportKeyword(importKeyword: BabelNodeInfo): Ast
    Attributes
    protected
    Definition Classes
    AstForPrimitivesCreator
  35. def astForInOfStatement(forInOfStmt: BabelNodeInfo): Ast

    De-sugaring from:

    De-sugaring from:

    for (var i in/of arr) { body }

    to:

    { var _iterator = Object.keys(arr)[Symbol.iterator](); var _result; var i; while (!(_result = _iterator.next()).done) { i = _result.value; body } }

    Attributes
    protected
    Definition Classes
    AstForStatementsCreator
  36. def astForInterface(tsInterface: BabelNodeInfo): Ast
    Attributes
    protected
    Definition Classes
    AstForTypesCreator
  37. def astForJsxAttribute(jsxAttr: BabelNodeInfo): Ast
    Attributes
    protected
    Definition Classes
    AstForTemplateDomCreator
  38. def astForJsxClosingElement(jsxClosingElem: BabelNodeInfo): Ast
    Attributes
    protected
    Definition Classes
    AstForTemplateDomCreator
  39. def astForJsxElement(jsxElem: BabelNodeInfo): Ast
    Attributes
    protected
    Definition Classes
    AstForTemplateDomCreator
  40. def astForJsxExprContainer(jsxExprContainer: BabelNodeInfo): Ast
    Attributes
    protected
    Definition Classes
    AstForTemplateDomCreator
  41. def astForJsxFragment(jsxFragment: BabelNodeInfo): Ast
    Attributes
    protected
    Definition Classes
    AstForTemplateDomCreator
  42. def astForJsxOpeningElement(jsxOpeningElem: BabelNodeInfo): Ast
    Attributes
    protected
    Definition Classes
    AstForTemplateDomCreator
  43. def astForJsxSpreadAttribute(jsxSpreadAttr: BabelNodeInfo): Ast
    Attributes
    protected
    Definition Classes
    AstForTemplateDomCreator
  44. def astForJsxText(jsxText: BabelNodeInfo): Ast
    Attributes
    protected
    Definition Classes
    AstForTemplateDomCreator
  45. def astForLabeledStatement(labelStmt: BabelNodeInfo): Ast
    Attributes
    protected
    Definition Classes
    AstForStatementsCreator
  46. def astForLogicalExpression(logicalExpr: BabelNodeInfo): Ast
    Attributes
    protected
    Definition Classes
    AstForExpressionsCreator
  47. def astForMemberExpression(memberExpr: BabelNodeInfo): Ast
    Attributes
    protected
    Definition Classes
    AstForExpressionsCreator
  48. def astForModule(tsModuleDecl: BabelNodeInfo): Ast
    Attributes
    protected
    Definition Classes
    AstForTypesCreator
  49. def astForNewExpression(newExpr: BabelNodeInfo): Ast
    Attributes
    protected
    Definition Classes
    AstForExpressionsCreator
  50. def astForNode(json: Value): Ast
    Attributes
    protected
  51. def astForNodeWithFunctionReference(json: Value): Ast
    Attributes
    protected
  52. def astForNodes(jsons: List[Value]): List[Ast]
    Attributes
    protected
  53. def astForNullLiteral(nullLiteral: BabelNodeInfo): Ast
    Attributes
    protected
    Definition Classes
    AstForPrimitivesCreator
  54. def astForNumberLiteral(numberLiteral: BabelNodeInfo): Ast
    Attributes
    protected
    Definition Classes
    AstForPrimitivesCreator
  55. def astForNumericLiteral(numericLiteral: BabelNodeInfo): Ast
    Attributes
    protected
    Definition Classes
    AstForPrimitivesCreator
  56. def astForObjectExpression(objExpr: BabelNodeInfo): Ast
    Attributes
    protected
    Definition Classes
    AstForExpressionsCreator
  57. def astForRegExpLiteral(regExpLiteral: BabelNodeInfo): Ast
    Attributes
    protected
    Definition Classes
    AstForPrimitivesCreator
  58. def astForRegexLiteral(regexLiteral: BabelNodeInfo): Ast
    Attributes
    protected
    Definition Classes
    AstForPrimitivesCreator
  59. def astForReturnStatement(ret: BabelNodeInfo): Ast
    Attributes
    protected
    Definition Classes
    AstForStatementsCreator
  60. def astForSequenceExpression(seq: BabelNodeInfo): Ast
    Attributes
    protected
    Definition Classes
    AstForExpressionsCreator
  61. def astForStringLiteral(stringLiteral: BabelNodeInfo): Ast
    Attributes
    protected
    Definition Classes
    AstForPrimitivesCreator
  62. def astForSuperKeyword(superKeyword: BabelNodeInfo): Ast
    Attributes
    protected
    Definition Classes
    AstForPrimitivesCreator
  63. def astForSwitchStatement(switchStmt: BabelNodeInfo): Ast
    Attributes
    protected
    Definition Classes
    AstForStatementsCreator
  64. def astForTSDeclareFunction(func: BabelNodeInfo): Ast
    Attributes
    protected
    Definition Classes
    AstForFunctionsCreator
  65. def astForTSImportEqualsDeclaration(impDecl: BabelNodeInfo): Ast
    Attributes
    protected
    Definition Classes
    AstForDeclarationsCreator
  66. def astForTemplateElement(templateElement: BabelNodeInfo): Ast
    Attributes
    protected
    Definition Classes
    AstForPrimitivesCreator
  67. def astForTemplateExpression(templateExpr: BabelNodeInfo): Ast
    Definition Classes
    AstForExpressionsCreator
  68. def astForTemplateLiteral(templateLiteral: BabelNodeInfo): Ast
    Attributes
    protected
    Definition Classes
    AstForPrimitivesCreator
  69. def astForThisExpression(thisExpr: BabelNodeInfo): Ast
    Attributes
    protected
    Definition Classes
    AstForExpressionsCreator
  70. def astForThrowStatement(throwStmt: BabelNodeInfo): Ast
    Attributes
    protected
    Definition Classes
    AstForStatementsCreator
  71. def astForTryStatement(tryStmt: BabelNodeInfo): Ast
    Attributes
    protected
    Definition Classes
    AstForStatementsCreator
  72. def astForTypeAlias(alias: BabelNodeInfo): Ast
    Attributes
    protected
    Definition Classes
    AstForTypesCreator
  73. def astForUnaryExpression(unaryExpr: BabelNodeInfo): Ast
    Attributes
    protected
    Definition Classes
    AstForExpressionsCreator
  74. def astForUpdateExpression(updateExpr: BabelNodeInfo): Ast
    Attributes
    protected
    Definition Classes
    AstForExpressionsCreator
  75. def astForVariableDeclaration(declaration: BabelNodeInfo): Ast
    Attributes
    protected
    Definition Classes
    AstForDeclarationsCreator
  76. def astForWhileStatement(whileStmt: BabelNodeInfo): Ast
    Attributes
    protected
    Definition Classes
    AstForStatementsCreator
  77. def blockAst(blockNode: NewBlock, statements: List[Ast]): Ast
    Definition Classes
    AstCreatorBase
  78. def calcMethodNameAndFullName(func: BabelNodeInfo): (String, String)
    Attributes
    protected
    Definition Classes
    AstCreatorHelper
  79. def calcTypeNameAndFullName(classNode: BabelNodeInfo, preCalculatedName: Option[String] = None): (String, String)
    Attributes
    protected
    Definition Classes
    AstCreatorHelper
  80. def callAst(callNode: NewCall, arguments: Seq[Ast], receiver: Option[Ast], withRecvArgEdge: Boolean): Ast
    Definition Classes
    AstCreatorBase
  81. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native() @HotSpotIntrinsicCandidate()
  82. def code(node: Value): String
    Attributes
    protected
    Definition Classes
    AstCreatorHelper
  83. def codeOf(node: NewNode): String
    Attributes
    protected
    Definition Classes
    AstNodeBuilder
  84. def column(node: Value): Option[Integer]
    Attributes
    protected
    Definition Classes
    AstCreatorHelper
  85. def columnEnd(node: Value): Option[Integer]
    Attributes
    protected
    Definition Classes
    AstCreatorHelper
  86. val config: Config
  87. def controlStructureAst(controlStructureNode: NewControlStructure, condition: Option[Ast], children: List[Ast], placeConditionLast: Boolean): Ast
    Definition Classes
    AstCreatorBase
  88. def convertDestructingObjectElementWithDefault(element: BabelNodeInfo, key: BabelNodeInfo, localTmpName: String): Ast
    Attributes
    protected
    Definition Classes
    AstForDeclarationsCreator
  89. def createAssignmentCallAst(destId: NewNode, sourceId: NewNode, code: String, line: Option[Integer], column: Option[Integer]): Ast
    Attributes
    protected
    Definition Classes
    AstNodeBuilder
  90. def createAst(): DiffGraphBuilder
    Definition Classes
    AstCreator → AstCreatorBase
  91. def createAstForFakeStaticInitMethod(name: String, filename: String, lineNumber: Option[Integer], childrenAsts: Seq[Ast]): Ast
    Attributes
    protected
    Definition Classes
    AstNodeBuilder
  92. def createBabelNodeInfo(json: Value): BabelNodeInfo
    Attributes
    protected
    Definition Classes
    AstCreatorHelper
  93. def createBindingNode(): NewBinding
    Attributes
    protected
    Definition Classes
    AstNodeBuilder
  94. def createBlockNode(node: BabelNodeInfo): NewBlock
    Attributes
    protected
    Definition Classes
    AstNodeBuilder
  95. def createBlockStatementAsts(json: Value): List[Ast]
    Attributes
    protected
    Definition Classes
    AstForStatementsCreator
  96. def createCallAst(callNode: NewCall, arguments: List[Ast], receiver: Option[Ast] = None): Ast
    Attributes
    protected
    Definition Classes
    AstNodeBuilder
  97. def createCallNode(code: String, callName: String, dispatchType: String, line: Option[Integer], column: Option[Integer]): NewCall
    Attributes
    protected
    Definition Classes
    AstNodeBuilder
  98. def createClosureBindingNode(closureBindingId: String, closureOriginalName: String): NewClosureBinding
    Attributes
    protected
    Definition Classes
    AstNodeBuilder
  99. def createControlStructureNode(node: BabelNodeInfo, controlStructureType: String): NewControlStructure
    Attributes
    protected
    Definition Classes
    AstNodeBuilder
  100. def createDependencyNode(name: String, groupId: String, version: String): NewDependency
    Attributes
    protected
    Definition Classes
    AstNodeBuilder
  101. def createEqualsCallAst(destId: NewNode, sourceId: NewNode, line: Option[Integer], column: Option[Integer]): Ast
    Attributes
    protected
    Definition Classes
    AstNodeBuilder
  102. def createFieldAccessCallAst(baseNode: NewNode, partNode: NewNode, line: Option[Integer], column: Option[Integer]): Ast
    Attributes
    protected
    Definition Classes
    AstNodeBuilder
  103. def createFieldIdentifierNode(name: String, line: Option[Integer], column: Option[Integer]): NewFieldIdentifier
    Attributes
    protected
    Definition Classes
    AstNodeBuilder
  104. def createFunctionTypeAndTypeDeclAst(methodNode: NewMethod, parentNode: NewNode, methodName: String, methodFullName: String, filename: String): Ast
    Attributes
    protected
    Definition Classes
    AstNodeBuilder
  105. def createIdentifierNode(name: String, dynamicTypeOption: Option[String], line: Option[Integer], column: Option[Integer]): NewIdentifier
    Attributes
    protected
    Definition Classes
    AstNodeBuilder
  106. def createIdentifierNode(name: String, node: BabelNodeInfo): NewIdentifier
    Attributes
    protected
    Definition Classes
    AstNodeBuilder
  107. def createImportNode(impDecl: BabelNodeInfo, importedEntity: Option[String], importedAs: String): NewImport
    Attributes
    protected
    Definition Classes
    AstNodeBuilder
  108. def createIndexAccessCallAst(baseNode: NewNode, partNode: NewNode, line: Option[Integer], column: Option[Integer]): Ast
    Attributes
    protected
    Definition Classes
    AstNodeBuilder
  109. def createJumpTarget(switchCase: BabelNodeInfo): NewJumpTarget
    Attributes
    protected
    Definition Classes
    AstNodeBuilder
  110. def createLiteralNode(code: String, dynamicTypeOption: Option[String], line: Option[Integer], column: Option[Integer]): NewLiteral
    Attributes
    protected
    Definition Classes
    AstNodeBuilder
  111. def createLocalNode(name: String, typeFullName: String, closureBindingId: Option[String] = None): NewLocal
    Attributes
    protected
    Definition Classes
    AstNodeBuilder
  112. def createMemberNode(name: String, code: String, dynamicTypeOption: Option[String]): NewMember
    Attributes
    protected
    Definition Classes
    AstNodeBuilder
  113. def createMethodAstAndNode(func: BabelNodeInfo, shouldCreateFunctionReference: Boolean = false, shouldCreateAssignmentCall: Boolean = false): MethodAst
    Attributes
    protected
    Definition Classes
    AstForFunctionsCreator
  114. def createMethodDefinitionNode(func: BabelNodeInfo): NewMethod
    Attributes
    protected
    Definition Classes
    AstForFunctionsCreator
  115. def createMethodNode(methodName: String, methodFullName: String, func: BabelNodeInfo): NewMethod
    Attributes
    protected
    Definition Classes
    AstNodeBuilder
  116. def createMethodRefNode(code: String, methodFullName: String, func: BabelNodeInfo): NewMethodRef
    Attributes
    protected
    Definition Classes
    AstNodeBuilder
  117. def createMethodReturnNode(func: BabelNodeInfo): NewMethodReturn
    Attributes
    protected
    Definition Classes
    AstNodeBuilder
  118. def createParameterInNode(name: String, code: String, index: Int, isVariadic: Boolean, line: Option[Integer], column: Option[Integer], tpe: Option[String] = None): NewMethodParameterIn
    Attributes
    protected
    Definition Classes
    AstNodeBuilder
  119. def createReturnAst(returnNode: NewReturn, arguments: List[Ast] = List()): Ast
    Attributes
    protected
    Definition Classes
    AstNodeBuilder
  120. def createReturnNode(ret: BabelNodeInfo): NewReturn
    Attributes
    protected
    Definition Classes
    AstNodeBuilder
  121. def createStaticCallNode(code: String, methodName: String, fullName: String, line: Option[Integer], column: Option[Integer]): NewCall
    Attributes
    protected
    Definition Classes
    AstNodeBuilder
  122. def createTemplateDomNode(name: String, code: String, line: Option[Integer], column: Option[Integer]): NewTemplateDom
    Attributes
    protected
    Definition Classes
    AstNodeBuilder
  123. def createTernaryCallAst(testNode: NewNode, trueNode: NewNode, falseNode: NewNode, line: Option[Integer], column: Option[Integer]): Ast
    Attributes
    protected
    Definition Classes
    AstNodeBuilder
  124. def createTypeDeclNode(name: String, fullname: String, filename: String, code: String, astParentType: String = "", astParentFullName: String = "", inherits: Seq[String] = Seq.empty, alias: Option[String] = None, line: Option[Integer] = None, column: Option[Integer] = None): NewTypeDecl
    Attributes
    protected
    Definition Classes
    AstNodeBuilder
  125. def createTypeRefNode(code: String, typeFullName: String, classNode: BabelNodeInfo): NewTypeRef
    Attributes
    protected
    Definition Classes
    AstNodeBuilder
  126. def createVariableReferenceLinks(): Unit
    Attributes
    protected
    Definition Classes
    AstCreatorHelper
  127. def createVoidCallNode(line: Option[Integer], column: Option[Integer]): NewCall
    Attributes
    protected
    Definition Classes
    AstNodeBuilder
  128. val diffGraph: DiffGraphBuilder
    Definition Classes
    AstCreatorBase
  129. val dynamicInstanceTypeStack: ListBuffer[String]
    Attributes
    protected
  130. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  131. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  132. def fixMethodFullName(method: NewMethod, withTypeName: String): NewMethod
    Attributes
    protected
    Definition Classes
    AstForTypesCreator
  133. val functionFullNames: HashSet[String]
    Attributes
    protected
  134. val functionNodeToNameAndFullName: HashMap[BabelNodeInfo, (String, String)]
    Attributes
    protected
  135. def generateUnusedVariableName(usedVariableNames: HashMap[String, Int], variableName: String): String
    Attributes
    protected
    Definition Classes
    AstCreatorHelper
  136. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  137. def globalNamespaceBlock(): NewNamespaceBlock
    Definition Classes
    AstCreatorBase
  138. def hasKey(node: Value, key: String): Boolean
    Attributes
    protected
    Definition Classes
    AstCreatorHelper
  139. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  140. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  141. def isPlainTypeAlias(alias: BabelNodeInfo): Boolean
    Attributes
    protected
    Definition Classes
    TypeHelper
  142. def line(node: Value): Option[Integer]
    Attributes
    protected
    Definition Classes
    AstCreatorHelper
  143. def lineEnd(node: Value): Option[Integer]
    Attributes
    protected
    Definition Classes
    AstCreatorHelper
  144. val localAstParentStack: ListBuffer[NewBlock]
    Attributes
    protected
  145. val logger: Logger
    Attributes
    protected
  146. val metaTypeRefIdStack: ListBuffer[NewTypeRef]
    Attributes
    protected
  147. def methodAst(method: NewMethod, parameters: Seq[NewMethodParameterIn], body: Ast, methodReturn: NewMethodReturn, modifiers: Seq[NewModifier]): Ast
    Definition Classes
    AstCreatorBase
  148. val methodAstParentStack: ListBuffer[NewNode]
    Attributes
    protected
  149. def methodAstWithAnnotations(method: NewMethod, parameters: Seq[Ast], body: Ast, methodReturn: NewMethodReturn, modifiers: Seq[NewModifier], annotations: Seq[Ast]): Ast
    Definition Classes
    AstCreatorBase
  150. def methodReturnNode(tfn: String, dtfn: Option[String], line: Option[Integer], column: Option[Integer]): NewMethodReturn
    Definition Classes
    AstCreatorBase
  151. def methodStubAst(method: NewMethod, parameters: Seq[NewMethodParameterIn], methodReturn: NewMethodReturn): Ast
    Definition Classes
    AstCreatorBase
  152. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  153. def newUnknown(node: BabelNodeInfo): NewUnknown
    Attributes
    protected
    Definition Classes
    AstNodeBuilder
  154. def notHandledYet(node: BabelNodeInfo, additionalInfo: String = ""): Ast
    Attributes
    protected
    Definition Classes
    AstCreatorHelper
  155. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  156. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  157. val parserResult: ParseResult
  158. def positionLookupTables(source: String): (SortedMap[Int, Int], SortedMap[Int, Int])
    Attributes
    protected
    Definition Classes
    AstCreatorHelper
  159. val positionToFirstPositionInLineMapping: SortedMap[Int, Int]
    Attributes
    protected
  160. val positionToLineNumberMapping: SortedMap[Int, Int]
    Attributes
    protected
  161. def registerType(typeName: String, typeFullName: String): Unit
    Attributes
    protected
    Definition Classes
    AstCreatorHelper
  162. def returnAst(returnNode: NewReturn, arguments: Seq[Ast]): Ast
    Definition Classes
    AstCreatorBase
  163. val rootTypeDecl: ListBuffer[NewTypeDecl]
    Attributes
    protected
  164. def safeBool(node: Value, key: String): Option[Boolean]
    Attributes
    protected
    Definition Classes
    AstCreatorHelper
  165. def safeObj(node: Value, key: String): Option[LinkedHashMap[String, Value]]
    Attributes
    protected
    Definition Classes
    AstCreatorHelper
  166. def safeStr(node: Value, key: String): Option[String]
    Attributes
    protected
    Definition Classes
    AstCreatorHelper
  167. val scope: Scope
    Attributes
    protected
  168. val seenAliasTypes: HashSet[NewTypeDecl]
    Attributes
    protected
  169. def setArgumentIndices(arguments: Seq[Ast]): Unit
    Definition Classes
    AstCreatorBase
  170. def setIndices(asts: List[Ast], receiver: Option[Ast] = None, countEmpty: Boolean = false): Unit
    Attributes
    protected
    Definition Classes
    AstNodeBuilder
  171. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  172. def toString(): String
    Definition Classes
    AnyRef → Any
  173. def typeFor(node: BabelNodeInfo): String
    Attributes
    protected
    Definition Classes
    TypeHelper
  174. val typeFullNameToPostfix: HashMap[String, Int]
    Attributes
    protected
  175. val usedTypes: ConcurrentHashMap[(String, String), Boolean]
  176. val usedVariableNames: HashMap[String, Int]
    Attributes
    protected
  177. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  178. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  179. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  180. def withArgumentIndex[T <: ExpressionNew](node: T, argIdxOpt: Option[Int]): T
    Definition Classes
    AstCreatorBase
  181. def withIndex[T, X](nodes: Array[T])(f: (T, Int) => X): Seq[X]
    Definition Classes
    AstCreatorBase
  182. def withIndex[T, X](nodes: Seq[T])(f: (T, Int) => X): Seq[X]
    Definition Classes
    AstCreatorBase

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable]) @Deprecated
    Deprecated

Inherited from AstCreatorHelper

Inherited from TypeHelper

Inherited from AstNodeBuilder

Inherited from AstForFunctionsCreator

Inherited from AstForTypesCreator

Inherited from AstCreatorBase

Inherited from AnyRef

Inherited from Any

Ungrouped