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

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

package com.google.dart.compiler.backend.js.ast;

import java.util.Collections;
import java.util.Map;

public class JsDocComment extends JsExpressionImpl {
    private final Map tags;

    public JsDocComment(Map tags) {
        this.tags = tags;
    }

    public Map getTags() {
        return tags;
    }

    public JsDocComment(String tagName, JsNameRef tagValue) {
        tags = Collections.singletonMap(tagName, tagValue);
    }

    public JsDocComment(String tagName, String tagValue) {
        tags = Collections.singletonMap(tagName, tagValue);
    }

    @Override
    public void accept(JsVisitor v) {
        v.visitDocComment(this);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy