mirror of
https://github.com/xomboverlord/ldc.git
synced 2026-05-03 08:51:30 +02:00
First merge of 2.064 beta.
This corresponds to DMD commit a913ce4bc59a94a022a27e390fc841f4aededffb. Doesn't build Phobos yet.
This commit is contained in:
committed by
Kai Nacke
parent
c400d180d2
commit
cb341586e3
@@ -17,23 +17,17 @@
|
||||
|
||||
#include "root.h"
|
||||
|
||||
#if IN_LLVM
|
||||
namespace llvm
|
||||
{
|
||||
class Value;
|
||||
}
|
||||
#endif
|
||||
|
||||
struct Identifier : Object
|
||||
class Identifier : public RootObject
|
||||
{
|
||||
public:
|
||||
int value;
|
||||
const char *string;
|
||||
size_t len;
|
||||
|
||||
Identifier(const char *string, int value);
|
||||
int equals(Object *o);
|
||||
bool equals(RootObject *o);
|
||||
hash_t hashCode();
|
||||
int compare(Object *o);
|
||||
int compare(RootObject *o);
|
||||
void print();
|
||||
char *toChars();
|
||||
const char *toHChars2();
|
||||
|
||||
Reference in New Issue
Block a user