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.20
Show newest version
package com.google.dart.compiler.backend.js.ast;

import org.jetbrains.annotations.NotNull;

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy