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

prompto.javascript.JavaScriptCharacterLiteral Maven / Gradle / Ivy

The newest version!
package prompto.javascript;

public class JavaScriptCharacterLiteral extends JavaScriptLiteral {

	String value;
	
	public JavaScriptCharacterLiteral(String text) {
		super(text);
		this.value = text.substring(1,text.length()-1);
	}

	@Override
	public String toString() {
		return "'" + value + "'";
	}
	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy