
com.github.leeonky.dal.ast.node.ExclamationNode Maven / Gradle / Ivy
package com.github.leeonky.dal.ast.node;
import java.util.List;
public class ExclamationNode extends DALNode {
private final String exclamations;
public ExclamationNode(List exclamations) {
this.exclamations = String.join("", exclamations);
}
@Override
public String inspect() {
return exclamations;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy