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

com.google.dart.compiler.backend.js.ast.RecursiveJsVisitor Maven / Gradle / Ivy

There is a newer version: 2.0.0
Show newest version
package com.google.dart.compiler.backend.js.ast;

public abstract class RecursiveJsVisitor extends JsVisitor {
    @Override
    protected void visitElement(JsNode node) {
        node.acceptChildren(this);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy