blob: 5613dc59b4a01fa66bfd916b1c3d0b146e033cd6 [file] [log] [blame]
// Copyright (c) 2021, 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.
/// Character `.`.
const int $dot = 0x2e;
/// Character `0`.
const int $0 = 0x30;
/// Character `9`.
const int $9 = 0x39;
/// Character `\`.
const int $backslash = 0x5c;
/// Character `_`.
// ignore: constant_identifier_names
const int $_ = 0x5f;
/// Character `a`.
const int $a = 0x61;
/// Character `z`.
const int $z = 0x7a;
/// Character `|`.
const int $pipe = 0x7c;