OLD | NEW |
(Empty) | |
| 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE file. |
| 4 |
| 5 library utils; |
| 6 |
| 7 /** |
| 8 * Returns the name of the type of [x], or "Unknown" if the type name can't be |
| 9 * determined. |
| 10 */ |
| 11 String typeName(x) { |
| 12 // dart2js blows up on some objects (e.g. window.navigator). |
| 13 // So we play safe here. |
| 14 try { |
| 15 if (x == null) return "null"; |
| 16 var type = x.runtimeType.toString(); |
| 17 // TODO(nweiz): if the object's type is private, find a public superclass to |
| 18 // display once there's a portable API to do that. |
| 19 return type.startsWith("_") ? "Unknown" : type; |
| 20 } catch (e) { |
| 21 return "Unknown"; |
| 22 } |
| 23 } |
| 24 |
| 25 /** |
| 26 * Returns [source] with any control characters replaced by their escape |
| 27 * sequences. |
| 28 * |
| 29 * This doesn't add quotes to the string, but it does escape single quote |
| 30 * characters so that single quotes can be applied externally. |
| 31 */ |
| 32 String escapeString(String source) => |
| 33 source.split("").map(_escapeChar).join(""); |
| 34 |
| 35 /** Return the escaped form of a character [ch]. */ |
| 36 String _escapeChar(String ch) { |
| 37 if (ch == "'") |
| 38 return "\\'"; |
| 39 else if (ch == '\n') |
| 40 return '\\n'; |
| 41 else if (ch == '\r') |
| 42 return '\\r'; |
| 43 else if (ch == '\t') |
| 44 return '\\t'; |
| 45 else |
| 46 return ch; |
| 47 } |
| 48 |
OLD | NEW |