| Index: runtime/lib/string_patch.dart
|
| diff --git a/runtime/lib/string_patch.dart b/runtime/lib/string_patch.dart
|
| index 54dcb0e67f9f2c75372ed2b4960eea92f101789c..2e4e046bc550fda961454a2f81f5c21bffa45dc3 100644
|
| --- a/runtime/lib/string_patch.dart
|
| +++ b/runtime/lib/string_patch.dart
|
| @@ -6,6 +6,10 @@ patch class String {
|
| /* patch */ factory String.fromCharCodes(Iterable<int> charCodes) {
|
| return _StringBase.createFromCharCodes(charCodes);
|
| }
|
| +
|
| + /* patch */ const factory String.fromEnvironment(String name,
|
| + {String defaultValue})
|
| + native "String_fromEnvironment";
|
| }
|
|
|
|
|
|
|