All Downloads are FREE. Search and download functionalities are using the official Maven repository.

prompto.javascript.JavaScriptThisExpression Maven / Gradle / Ivy

The newest version!
package prompto.javascript;

import prompto.declaration.IMethodDeclaration;
import prompto.expression.MethodSelector;
import prompto.statement.MethodCall;
import prompto.transpiler.Transpiler;
import prompto.utils.CodeWriter;

public class JavaScriptThisExpression implements JavaScriptExpression {
	
	@Override
	public String toString() {
		return "this";
	}
	
	@Override
	public void toDialect(CodeWriter writer) {
		writer.append("this");
	}
	
	@Override
	public void transpile(Transpiler transpiler) {
		transpiler.append("this");
	}
	
	@Override
	public void transpileInlineMethodCall(Transpiler transpiler, IMethodDeclaration declaration, MethodCall methodCall) {
		MethodSelector selector = methodCall.resolveSelector(transpiler, declaration);
		selector.getParent().transpile(transpiler);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy