blob: d28428290ad324831ddbab18da1da5b0225f8ce6 [file] [log] [blame]
// Copyright (c) 2022, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
import 'delimiter_syntax.dart';
@Deprecated('Use DelimiterSyntax instead')
class TagSyntax extends DelimiterSyntax {
TagSyntax(String pattern, {bool requiresDelimiterRun = false})
: super(pattern, requiresDelimiterRun: requiresDelimiterRun);
}