Download Reference Manual
The Developer's Library for D
About Wiki Forums Source Search Contact

Changes between Version 54 and Version 55 of PhobosTangoMigration

Show
Ignore:
Author:
larsivi (IP: 84.48.63.70)
Timestamp:
05/29/09 17:18:02 (15 years ago)
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • PhobosTangoMigration

    v54 v55  
    7171== std.demangle == 
    7272 
    73 For compile time uses of demangling, Tango supercedes Phobos' demangle module by providing more complete functionality in [http://tango.dsource.org/docs/current/tango.meta.Nameof.html tango.meta.Nameof], and at compile time. To use it, import 
    74  
    75 {{{ 
    76 #!d 
    77 import tango.meta.Nameof; 
    78 }}} 
    79  
    80 '''''demangle''''' 
    81  
    82 The equivalent of this function, is ''prettynameof()'', but you can also get a prettyfied name of a type, the symbol name, and a qualified name. 
    83  
    84 Tango does not currently have a facility for runtime uses of demangling (such as extracting symbols from linker output). 
     73From Tango 0.99.9 you will find demangling by using 
     74 
     75{{{ 
     76#!d 
     77import tango.core.stacktrace.Demangler; 
     78}}} 
    8579 
    8680== std.file ==