// Copyright (c) 2020, 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 $backslash = 0x5C; /// "Carriage return" control character. const int $cr = 0x0D; /// Character '"'. const int $doubleQuote = 0x22; /// Character 'f'. const int $f = 0x66; /// "Line feed" control character. const int $lf = 0x0A; /// Space character. const int $space = 0x20; /// Character 'x'. const int $x = 0x78;