forked from swiftlang/swift
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSyntaxData.cpp
76 lines (62 loc) · 2.15 KB
/
SyntaxData.cpp
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
70
71
72
73
74
75
76
//===--- SyntaxData.cpp - Swift Syntax Data Implementation ----------------===//
//
// This source file is part of the Swift.org open source project
//
// Copyright (c) 2014 - 2017 Apple Inc. and the Swift project authors
// Licensed under Apache License v2.0 with Runtime Library Exception
//
// See https://swift.org/LICENSE.txt for license information
// See https://swift.org/CONTRIBUTORS.txt for the list of Swift project authors
//
//===----------------------------------------------------------------------===//
#include "swift/Syntax/DeclSyntax.h"
#include "swift/Syntax/ExprSyntax.h"
#include "swift/Syntax/GenericSyntax.h"
#include "swift/Syntax/TypeSyntax.h"
#include "swift/Syntax/StmtSyntax.h"
#include "swift/Syntax/UnknownSyntax.h"
#include "llvm/Support/ErrorHandling.h"
using namespace swift;
using namespace swift::syntax;
RC<SyntaxData> SyntaxData::make(RC<RawSyntax> Raw,
const SyntaxData *Parent,
CursorIndex IndexInParent) {
return RC<SyntaxData> {
new SyntaxData(Raw, Parent, IndexInParent)
};
}
RC<SyntaxData> SyntaxData::makeDataFromRaw(RC<RawSyntax> Raw,
const SyntaxData *Parent,
CursorIndex IndexInParent) {
switch (Raw->Kind) {
#define SYNTAX(Id, ParentType) \
case SyntaxKind::Id: \
return Id##SyntaxData::make(Raw, Parent, IndexInParent);
#define MISSING_SYNTAX(Id, ParentType) \
case SyntaxKind::Id: \
return ParentType##Data::make(Raw, Parent, IndexInParent);
#define SYNTAX_COLLECTION(Id, Element) SYNTAX(Id, {})
#include "swift/Syntax/SyntaxKinds.def"
case SyntaxKind::Token:
llvm_unreachable("Can't make a SyntaxData from a Token!");
}
llvm_unreachable("Unhandled SyntaxKind in switch.");
}
bool SyntaxData::isType() const {
return Raw->isType();
}
bool SyntaxData::isStmt() const {
return Raw->isStmt();
}
bool SyntaxData::isDecl() const {
return Raw->isDecl();
}
bool SyntaxData::isExpr() const {
return Raw->isExpr();
}
bool SyntaxData::isUnknown() const {
return Raw->isUnknown();
}
void SyntaxData::dump(llvm::raw_ostream &OS) const {
Raw->dump(OS, 0);
}