forked from ldc-developers/ldc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patharraytypes.h
69 lines (39 loc) · 1.85 KB
/
arraytypes.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
/* Compiler implementation of the D programming language
* Copyright (C) 2006-2024 by The D Language Foundation, All Rights Reserved
* written by Walter Bright
* https://www.digitalmars.com
* Distributed under the Boost Software License, Version 1.0.
* https://www.boost.org/LICENSE_1_0.txt
* https://github.com/dlang/dmd/blob/master/src/dmd/arraytypes.h
*/
#pragma once
#include "root/array.h"
#include "root/bitarray.h"
typedef Array<class TemplateParameter *> TemplateParameters;
typedef Array<class Expression *> Expressions;
typedef Array<class Statement *> Statements;
typedef Array<struct BaseClass *> BaseClasses;
typedef Array<class ClassDeclaration *> ClassDeclarations;
typedef Array<class Dsymbol *> Dsymbols;
typedef Array<class RootObject *> Objects;
typedef Array<class DtorDeclaration *> DtorDeclarations;
typedef Array<class FuncDeclaration *> FuncDeclarations;
typedef Array<class Parameter *> Parameters;
typedef Array<class Identifier *> Identifiers;
typedef Array<class Initializer *> Initializers;
typedef Array<class VarDeclaration *> VarDeclarations;
typedef Array<class Type *> Types;
typedef Array<class Catch *> Catches;
typedef Array<class StaticDtorDeclaration *> StaticDtorDeclarations;
typedef Array<class SharedStaticDtorDeclaration *> SharedStaticDtorDeclarations;
typedef Array<class AliasDeclaration *> AliasDeclarations;
typedef Array<class Module *> Modules;
typedef Array<class CaseStatement *> CaseStatements;
typedef Array<class ScopeStatement *> ScopeStatements;
typedef Array<class GotoCaseStatement *> GotoCaseStatements;
typedef Array<class ReturnStatement *> ReturnStatements;
typedef Array<class GotoStatement *> GotoStatements;
typedef Array<class TemplateInstance *> TemplateInstances;
typedef Array<struct Ensure> Ensures;
typedef Array<struct Designator> Designators;
typedef Array<struct DesigInit> DesigInits;