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

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

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

abstract class SourceInfoAwareJsNode extends AbstractNode {
    private Object source;

    @Override
    public Object getSource() {
        return source;
    }

    @Override
    public void setSource(Object info) {
        source = info;
    }

    @Override
    public void acceptChildren(JsVisitor visitor) {
    }

    @Override
    public JsNode source(Object info) {
        source = info;
        return this;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy