]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/d/dmd/arraytypes.h
d: Merge upstream dmd 7132b3537
[thirdparty/gcc.git] / gcc / d / dmd / arraytypes.h
CommitLineData
b4c522fa
IB
1
2/* Compiler implementation of the D programming language
a3b38b77 3 * Copyright (C) 2006-2021 by The D Language Foundation, All Rights Reserved
b4c522fa
IB
4 * written by Walter Bright
5 * http://www.digitalmars.com
6 * Distributed under the Boost Software License, Version 1.0.
7 * http://www.boost.org/LICENSE_1_0.txt
8 * https://github.com/dlang/dmd/blob/master/src/dmd/arraytypes.h
9 */
10
11#pragma once
12
2cbc99d1
IB
13#include "root/array.h"
14#include "root/bitarray.h"
b4c522fa
IB
15
16typedef Array<class TemplateParameter *> TemplateParameters;
17
18typedef Array<class Expression *> Expressions;
19
20typedef Array<class Statement *> Statements;
21
22typedef Array<struct BaseClass *> BaseClasses;
23
24typedef Array<class ClassDeclaration *> ClassDeclarations;
25
26typedef Array<class Dsymbol *> Dsymbols;
27
28typedef Array<class RootObject *> Objects;
29
30typedef Array<class FuncDeclaration *> FuncDeclarations;
31
32typedef Array<class Parameter *> Parameters;
33
34typedef Array<class Identifier *> Identifiers;
35
36typedef Array<class Initializer *> Initializers;
37
38typedef Array<class VarDeclaration *> VarDeclarations;
39
40typedef Array<class Type *> Types;
41typedef Array<class Catch *> Catches;
42
43typedef Array<class StaticDtorDeclaration *> StaticDtorDeclarations;
44
45typedef Array<class SharedStaticDtorDeclaration *> SharedStaticDtorDeclarations;
46
47typedef Array<class AliasDeclaration *> AliasDeclarations;
48
49typedef Array<class Module *> Modules;
50
51typedef Array<struct File *> Files;
52
53typedef Array<class CaseStatement *> CaseStatements;
54
55typedef Array<class ScopeStatement *> ScopeStatements;
56
57typedef Array<class GotoCaseStatement *> GotoCaseStatements;
58
59typedef Array<class ReturnStatement *> ReturnStatements;
60
61typedef Array<class GotoStatement *> GotoStatements;
62
63typedef Array<class TemplateInstance *> TemplateInstances;
acae7b21
IB
64
65typedef Array<struct Ensure> Ensures;