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

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

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

import org.jetbrains.annotations.NotNull;

public interface JsExpression extends JsNode {
    boolean isLeaf();

    @NotNull
    JsStatement makeStmt();

    @Override
    JsExpression source(Object info);

    @NotNull
    @Override
    JsExpression deepCopy();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy