org.jetbrains.kotlin.js.parser.parserUtils.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kotlin-compiler-embeddable Show documentation
Show all versions of kotlin-compiler-embeddable Show documentation
the Kotlin compiler embeddable
/*
* Copyright 2010-2015 JetBrains s.r.o.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.jetbrains.kotlin.js.parser
import com.google.gwt.dev.js.JsAstMapper
import com.google.gwt.dev.js.rhino.*
import org.jetbrains.kotlin.js.backend.ast.*
import java.io.Reader
import java.io.StringReader
fun parse(code: String, reporter: ErrorReporter, scope: JsScope, fileName: String): List? {
val insideFunction = scope is JsFunctionScope
val node = parse(code, CodePosition(0, 0), 0, reporter, insideFunction, Parser::parse)
return node?.toJsAst(scope, fileName) {
mapStatements(it)
}
}
fun parseExpressionOrStatement(
code: String,
reporter: ErrorReporter, scope: JsScope,
startPosition: CodePosition, fileName: String
): List? {
val accumulatingReporter = AccumulatingReporter()
val exprNode = try {
parse(code, startPosition, 0, accumulatingReporter, true) {
val result = expr(it, false)
if (it.token != TokenStream.EOF) {
accumulatingReporter.hasErrors = true
}
result
}
}
catch (e: JavaScriptException) {
null
}
return if (!accumulatingReporter.hasErrors) {
for (warning in accumulatingReporter.warnings) {
reporter.warning(warning.message, warning.startPosition, warning.endPosition)
}
val expr = exprNode?.toJsAst(scope, fileName) {
mapExpression(it)
}
expr?.let { listOf(JsExpressionStatement(it)) }
}
else {
val node = parse(code, startPosition, 0, reporter, true, Parser::parse)
node?.toJsAst(scope, fileName) {
mapStatements(it)
}
}
}
fun parseFunction(code: String, fileName: String, position: CodePosition, offset: Int, reporter: ErrorReporter, scope: JsScope): JsFunction? {
val rootNode = parse(code, position, offset, reporter, insideFunction = false) {
addListener(FunctionParsingObserver())
primaryExpr(it)
}
return rootNode?.toJsAst(scope, fileName, JsAstMapper::mapFunction)
}
private class FunctionParsingObserver : ParserListener {
var functionsStarted = 0
override fun functionStarted() {
functionsStarted++
}
override fun functionEnded(tokenStream: TokenStream) {
if (--functionsStarted == 0) {
tokenStream.ungetToken(TokenStream.EOF)
}
}
}
inline
private fun parse(
code: String,
startPosition: CodePosition,
offset: Int,
reporter: ErrorReporter,
insideFunction: Boolean,
parseAction: Parser.(TokenStream)->Any
): Node? {
Context.enter().errorReporter = reporter
try {
val ts = TokenStream(StringReader(code, offset), "", startPosition)
val parser = Parser(IRFactory(ts), insideFunction)
return parser.parseAction(ts) as? Node
} finally {
Context.exit()
}
}
inline
private fun Node.toJsAst(scope: JsScope, fileName: String, mapAction: JsAstMapper.(Node)->T): T =
JsAstMapper(scope, fileName).mapAction(this)
private fun StringReader(string: String, offset: Int): Reader {
val reader = StringReader(string)
reader.skip(offset.toLong())
return reader
}
private class AccumulatingReporter : ErrorReporter {
var hasErrors = false
val warnings = mutableListOf()
override fun warning(message: String, startPosition: CodePosition, endPosition: CodePosition) {
warnings += Warning(message, startPosition, endPosition)
}
override fun error(message: String, startPosition: CodePosition, endPosition: CodePosition) {
hasErrors = true
}
class Warning(val message: String, val startPosition: CodePosition, val endPosition: CodePosition)
}