
com.google.dart.compiler.backend.js.ast.AbstractNode Maven / Gradle / Ivy
package com.google.dart.compiler.backend.js.ast;
import com.google.dart.compiler.backend.js.JsToStringGenerationVisitor;
import com.google.dart.compiler.util.TextOutputImpl;
abstract class AbstractNode implements JsNode {
@Override
public String toString() {
TextOutputImpl out = new TextOutputImpl();
new JsToStringGenerationVisitor(out).accept(this);
return out.toString();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy