forked from swiftlang/swift
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathUnknownSyntaxTests.cpp
174 lines (138 loc) · 6.39 KB
/
UnknownSyntaxTests.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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
#include "swift/Syntax/SyntaxFactory.h"
#include "swift/Syntax/SyntaxBuilders.h"
#include "llvm/ADT/SmallString.h"
#include "gtest/gtest.h"
using llvm::None;
using llvm::SmallString;
using namespace swift;
using namespace swift::syntax;
/*
SymbolicReferenceExprSyntax getCannedSymbolicRef() {
// First, make a symbolic reference to an 'Array<Int>'
auto Array = SyntaxFactory::makeIdentifier("Array", {}, {});
auto Int = SyntaxFactory::makeIdentifier("Int", {}, {});
auto IntType = SyntaxFactory::makeSimpleTypeIdentifier(Int, None);
auto IntArg = SyntaxFactory::makeGenericArgument(IntType, None);
GenericArgumentClauseSyntaxBuilder ArgBuilder;
ArgBuilder
.useLeftAngleBracket(SyntaxFactory::makeLeftAngleToken({}, {}))
.useRightAngleBracket(SyntaxFactory::makeRightAngleToken({}, {}))
.addArgumentsMember(IntArg);
return SyntaxFactory::makeSymbolicReferenceExpr(Array, ArgBuilder.build());
}
FunctionCallExprSyntax getCannedFunctionCall() {
auto LParen = SyntaxFactory::makeLeftParenToken({}, {});
auto RParen = SyntaxFactory::makeRightParenToken({}, {});
auto Label = SyntaxFactory::makeIdentifier("elements", {}, {});
auto Colon = SyntaxFactory::makeColonToken({}, Trivia::spaces(1));
auto OneDigits = SyntaxFactory::makeIntegerLiteral("1", {}, {});
auto NoSign = TokenSyntax::missingToken(tok::oper_prefix, "");
auto One = SyntaxFactory::makePrefixOperatorExpr(NoSign,
SyntaxFactory::makeIntegerLiteralExpr(OneDigits));
auto NoComma = TokenSyntax::missingToken(tok::comma, ",");
auto Arg = SyntaxFactory::makeTupleExprElement(Label, Colon, One,
NoComma);
auto Args = SyntaxFactory::makeTupleExprElementList({ Arg });
return SyntaxFactory::makeFunctionCallExpr(getCannedSymbolicRef(), LParen,
Args, RParen, None);
}
TEST(UnknownSyntaxTests, UnknownSyntaxMakeAPIs) {
{
auto SymbolicRef = getCannedSymbolicRef();
// Print the known symbolic reference. It should print as "Array<Int>".
SmallString<48> KnownScratch;
llvm::raw_svector_ostream KnownOS(KnownScratch);
SymbolicRef.print(KnownOS);
ASSERT_EQ(KnownOS.str().str(), "Array<Int>");
// Wrap that symbolic reference as an UnknownSyntax. This has the same
// RawSyntax layout but with the Unknown Kind.
auto Unknown = make<UnknownSyntax>(SymbolicRef.getRaw());
// Print the unknown syntax. It should also print as "Array<Int>".
SmallString<48> UnknownScratch;
llvm::raw_svector_ostream UnknownOS(UnknownScratch);
Unknown.print(UnknownOS);
ASSERT_EQ(KnownOS.str().str(), UnknownOS.str().str());
}
}
TEST(UnknownSyntaxTests, UnknownSyntaxGetAPIs) {
auto Call = getCannedFunctionCall();
// Function call child 0 -> layout child 0 -> called expression
{
// Pull the called expression from the function call, which should print
// as "Array<Int>"
SmallString<48> KnownScratch;
llvm::raw_svector_ostream KnownOS(KnownScratch);
auto GottenExpr = Call.getCalledExpression();
GottenExpr.print(KnownOS);
// Wrap that call as an UnknownExprSyntax. This has the same
// RawSyntax layout but with the UnknownExpr Kind.;
auto Unknown = make<UnknownExprSyntax>(Call.getRaw());
ASSERT_EQ(Unknown.getNumChildren(), size_t(3));
// Get the second child from the unknown call, which is the argument list.
// This should print the same as the known one: "elements: 1"
SmallString<48> UnknownScratch;
llvm::raw_svector_ostream UnknownOS(UnknownScratch);
auto ExprGottenFromUnknown = Unknown.getChild(0)
.castTo<SymbolicReferenceExprSyntax>();
ExprGottenFromUnknown.print(UnknownOS);
ASSERT_EQ(KnownOS.str().str(), UnknownOS.str().str());
auto ExprGottenFromUnknown2 = Unknown.getChild(0);
ASSERT_TRUE(ExprGottenFromUnknown
.hasSameIdentityAs(ExprGottenFromUnknown2));
}
// Function call child 1 -> layout child 2 -> function call argument list
{
// Pull the argument list from the function call, which should print
// as "elements: 1"
SmallString<48> KnownScratch;
llvm::raw_svector_ostream KnownOS(KnownScratch);
auto GottenArgs = Call.getArgumentList();
GottenArgs.print(KnownOS);
// Wrap that symbolic reference as an UnknownSyntax. This has the same
// RawSyntax layout but with the Unknown Kind.
auto Unknown = make<UnknownSyntax>(Call.getRaw());
ASSERT_EQ(Unknown.getNumChildren(), size_t(3));
// Get the second child from the unknown call, which is the argument list.
// This should print the same as the known one: "elements: 1"
SmallString<48> UnknownScratch;
llvm::raw_svector_ostream UnknownOS(UnknownScratch);
auto ArgsGottenFromUnknown = Unknown.getChild(1)
.castTo<TupleExprElementListSyntax>();
ArgsGottenFromUnknown.print(UnknownOS);
ASSERT_EQ(KnownOS.str().str(), UnknownOS.str().str());
auto ArgsGottenFromUnknown2 = Unknown.getChild(1);
ASSERT_TRUE(ArgsGottenFromUnknown
.hasSameIdentityAs(ArgsGottenFromUnknown2));
}
}
TEST(UnknownSyntaxTests, EmbedUnknownExpr) {
auto SymbolicRef = getCannedSymbolicRef();
auto LParen = SyntaxFactory::makeLeftParenToken({}, {});
auto RParen = SyntaxFactory::makeRightParenToken({}, {});
auto EmptyArgs = SyntaxFactory::makeBlankTupleExprElementList();
SmallString<48> KnownScratch;
llvm::raw_svector_ostream KnownOS(KnownScratch);
auto CallWithKnownExpr = SyntaxFactory::makeFunctionCallExpr(SymbolicRef,
LParen,
EmptyArgs,
RParen, None);
CallWithKnownExpr.print(KnownOS);
// Let's make a function call expression where the called expression is
// actually unknown. It should print the same and have the same structure
// as one with a known called expression.
auto UnknownSymbolicRef = make<UnknownExprSyntax>(SymbolicRef.getRaw())
.castTo<ExprSyntax>();
SmallString<48> UnknownScratch;
llvm::raw_svector_ostream UnknownOS(UnknownScratch);
auto CallWithUnknownExpr = CallWithKnownExpr
.withCalledExpression(UnknownSymbolicRef);
CallWithUnknownExpr.print(UnknownOS);
ASSERT_EQ(KnownOS.str().str(), UnknownOS.str().str());
}
TEST(UnknownSyntaxTests, EmbedUnknownDecl) {
// TODO
}
TEST(UnknownSyntaxTests, EmbedUnknownStmt) {
// TODO
}
*/