 Chromium Code Reviews
 Chromium Code Reviews Issue 24975002:
  - Implement a first cut for const String.env in the VM to allow  (Closed) 
  Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
    
  
    Issue 24975002:
  - Implement a first cut for const String.env in the VM to allow  (Closed) 
  Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/| Index: runtime/lib/bool_patch.dart | 
| =================================================================== | 
| --- runtime/lib/bool_patch.dart (revision 28841) | 
| +++ runtime/lib/bool_patch.dart (working copy) | 
| @@ -9,4 +9,9 @@ | 
| int get _identityHashCode { | 
| return this ? 1231 : 1237; | 
| } | 
| + | 
| + /* patch */ const factory bool.fromEnvironment(String name, | 
| + {bool defaultValue: false}) | 
| + native "Boolean_fromEnvironment"; | 
| + | 
| } |