class ECMAScript extends AnyRef
The main class of Escalima.
Has methods to parse JavaScript.
- Note
Creation of this class might be expensive! It is recommended to only create one per thread.
- Alphabetic
- By Inheritance
- ECMAScript
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Instance Constructors
- new ECMAScript()
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
-
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()
-
def
parseModule(sourcecode: String): Program
Parses a JavaScript module and returns it's ast.
Parses a JavaScript module and returns it's ast.
- sourcecode
the source code that should be parsed
- returns
the ast of the module
- Exceptions thrown
ESPrimaParseExceptionif esprima was not able to parse sourcecode- Note
JavaScript modules and JavaScript scripts are different things. Scripts for example may not contain import/export declarations.
-
def
parseModuleToJson(sourcecode: String): String
Parses a JavaScript module and returns the json created by esprima.
Parses a JavaScript module and returns the json created by esprima.
- sourcecode
the source code that should be parsed
- returns
the json of the ast created by esprima
- Exceptions thrown
ESPrimaParseExceptionif esprima was not able to parse sourcecode- Note
JavaScript modules and JavaScript scripts are different things. Scripts for example may not contain import/export declarations.
-
def
parseScript(sourcecode: String): Program
Parses a JavaScript script and returns it's ast.
Parses a JavaScript script and returns it's ast.
- sourcecode
the source code that should be parsed
- returns
the ast of the module
- Exceptions thrown
ESPrimaParseExceptionif esprima was not able to parse sourcecode- Note
JavaScript modules and JavaScript scripts are different things. Scripts for example may not contain import/export declarations.
-
def
parseScriptToJson(sourcecode: String): String
Parses a JavaScript script and returns the json created by esprima.
Parses a JavaScript script and returns the json created by esprima.
- sourcecode
the source code that should be parsed
- returns
the json of the ast created by esprima
- Exceptions thrown
ESPrimaParseExceptionif esprima was not able to parse sourcecode- Note
JavaScript modules and JavaScript scripts are different things. Scripts for example may not contain import/export declarations.
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
-
def
toString(): String
- Definition Classes
- AnyRef → Any
-
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( ... )