mirror of
https://github.com/ldc-developers/ldc.git
synced 2025-05-09 20:37:25 +03:00

--- dmd/arrayop.c | 30 ++++---- dmd/arraytypes.h | 2 +- dmd/class.c | 8 +- dmd/declaration.c | 10 ++-- dmd/declaration.h | 16 ++-- dmd/doc.c | 12 ++-- dmd/dsymbol.c | 4 +- dmd/expression.c | 48 +++++++------- dmd/expression.h | 32 +++++----- dmd/func.c | 78 +++++++++++----------- dmd/init.c | 2 +- dmd/interpret.c | 8 +- dmd/mtype.c | 190 ++++++++++++++++++++++++++-------------------------- dmd/mtype.h | 32 +++++----- dmd/opover.c | 34 +++++----- dmd/parse.c | 40 ++++++------ dmd/parse.h | 2 +- dmd/statement.c | 90 +++++++++++++------------- dmd/statement.h | 14 ++-- dmd/struct.c | 8 +- dmd/template.c | 30 ++++---- gen/functions.cpp | 10 ++-- gen/functions.h | 2 +- gen/tocall.cpp | 10 ++-- gen/typinf.cpp | 6 +- 25 files changed, 359 insertions(+), 359 deletions(-)
51 lines
1,003 B
C
51 lines
1,003 B
C
|
|
// Compiler implementation of the D programming language
|
|
// Copyright (c) 2006-2007 by Digital Mars
|
|
// All Rights Reserved
|
|
// written by Walter Bright
|
|
// http://www.digitalmars.com
|
|
// License for redistribution is by either the Artistic License
|
|
// in artistic.txt, or the GNU General Public License in gnu.txt.
|
|
// See the included readme.txt for details.
|
|
|
|
#ifndef DMD_ARRAYTYPES_H
|
|
#define DMD_ARRAYTYPES_H
|
|
|
|
#ifdef __DMC__
|
|
#pragma once
|
|
#endif /* __DMC__ */
|
|
|
|
|
|
#include "root.h"
|
|
|
|
struct Expression;
|
|
struct Statement;
|
|
struct BaseClass;
|
|
struct TemplateParameter;
|
|
struct FuncDeclaration;
|
|
struct Identifier;
|
|
struct Initializer;
|
|
|
|
struct TemplateParameters : Array { };
|
|
|
|
struct Expressions : Array { };
|
|
|
|
struct Statements : Array { };
|
|
|
|
struct BaseClasses : Array { };
|
|
|
|
struct ClassDeclarations : Array { };
|
|
|
|
struct Dsymbols : Array { };
|
|
|
|
struct Objects : Array { };
|
|
|
|
struct FuncDeclarations : Array { };
|
|
|
|
struct Parameters : Array { };
|
|
|
|
struct Identifiers : Array { };
|
|
|
|
struct Initializers : Array { };
|
|
|
|
#endif
|