summaryrefslogtreecommitdiffstats
path: root/src/syntaxParser/InterpolationMethodList.java
blob: bfec1428e2d7ab9f9993fb883fa15fb9116ed4ed (plain)
1
2
3
4
5
6
package syntaxParser;

class InterpolationMethodList extends List {
    public InterpolationMethodList(FieldInterpolationMethod elem) { super((IParseTreeNode)elem); }
    public InterpolationMethodList(FieldInterpolationMethod elem, InterpolationMethodList next) { super((IParseTreeNode)elem, (List)next); }
}