mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
A function argument clause is now one or more patterns (which must be parenthesized and explicitly type all positions) not separated by arrows; the first arrow then separates off the return type. Revisions to language reference forthcoming. Swift SVN r1099
30 lines
868 B
C++
30 lines
868 B
C++
//===--- AST.h - Umbrella Header for AST Library ----------------*- C++ -*-===//
|
|
//
|
|
// This source file is part of the Swift.org open source project
|
|
//
|
|
// Copyright (c) 2014 - 2015 Apple Inc. and the Swift project authors
|
|
// Licensed under Apache License v2.0 with Runtime Library Exception
|
|
//
|
|
// See http://swift.org/LICENSE.txt for license information
|
|
// See http://swift.org/CONTRIBUTORS.txt for the list of Swift project authors
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
//
|
|
// This file includes the AST data structure headers.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#ifndef SWIFT_AST_H
|
|
#define SWIFT_AST_H
|
|
|
|
#include "ASTContext.h"
|
|
#include "Builtins.h"
|
|
#include "Decl.h"
|
|
#include "Expr.h"
|
|
#include "Module.h"
|
|
#include "Pattern.h"
|
|
#include "Stmt.h"
|
|
#include "Types.h"
|
|
|
|
#endif
|