Files
swift-mirror/include/swift/AST/AST.h
John McCall 16f8b2e656 Revise the language design for function argument clause syntax.
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
2012-01-26 01:25:26 +00:00

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