blob: 43ac6502254e5d312effa82aca7656d251438f5d [file] [edit]
// Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source is governed by a
// BSD-style license that can be found in the LICENSE file
/// "Horizontal Tab" control character, common name.
const int $tab = 0x09;
/// "Line feed" control character.
const int $lf = 0x0A;
/// "Vertical Tab" control character.
const int $vt = 0x0B;
/// "Form feed" control character.
const int $ff = 0x0C;
/// "Carriage return" control character.
const int $cr = 0x0D;
/// Space character.
const int $space = 0x20;
/// Character `!`.
const int $exclamation = 0x21;
/// Character `"`.
const int $quote = 0x22;
/// Character `&`.
const int $ampersand = 0x26;
/// Character `'`.
const int $apostrophe = 0x27;
/// Character `(`.
const int $lparen = 0x28;
/// Character `)`.
const int $rparen = 0x29;
/// Character `*`.
const int $asterisk = 0x2A;
/// Character `:`.
const int $colon = 0x3A;
/// Character `<`.
const int $lt = 0x3C;
/// Character `>`.
const int $gt = 0x3E;
/// Character `[`.
const int $lbracket = 0x5B;
/// Character `\`.
const int $backslash = 0x5C;
/// Character `]`.
const int $rbracket = 0x5D;
/// Character `^`.
const int $caret = 0x5E;
/// Character `_`.
const int $underscore = 0x5F;
/// Character `` ` ``.
const int $backquote = 0x60;
/// Character `|`.
const int $pipe = 0x7C;
/// Character `~`.
const int $tilde = 0x7E;