blob: 136e408dd91863e266ed64977bd8e4ed1c0217c5 [file] [log] [blame]
/*
* See LICENSE file in distribution for copyright and licensing information.
*/
package org.yaml.snakeyaml.tokens;
import org.yaml.snakeyaml.error.Mark;
/**
* @see <a href="http://pyyaml.org/wiki/PyYAML">PyYAML</a> for more information
*/
public final class FlowSequenceStartToken extends Token {
public FlowSequenceStartToken(Mark startMark, Mark endMark) {
super(startMark, endMark);
}
@Override
public String getTokenId() {
return "[";
}
}