 Chromium Code Reviews
 Chromium Code Reviews Issue 1105453003:
  Remove public int.is64Bit.  (Closed) 
  Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
    
  
    Issue 1105453003:
  Remove public int.is64Bit.  (Closed) 
  Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/| Index: runtime/lib/object.cc | 
| =================================================================== | 
| --- runtime/lib/object.cc (revision 45400) | 
| +++ runtime/lib/object.cc (working copy) | 
| @@ -319,4 +319,12 @@ | 
| } | 
| +DEFINE_NATIVE_ENTRY(Internal_inquireIs64Bit, 0) { | 
| +#if defined(ARCH_IS_64_BIT) | 
| + return Bool::True().raw(); | 
| +#else | 
| + return Bool::False().raw(); | 
| +#endif // defined(ARCH_IS_64_BIT) | 
| +} | 
| + | 
| } // namespace dart |