Fix tests
This commit is contained in:
parent
2beb819851
commit
b776d5a9b9
|
@ -1,6 +1,6 @@
|
||||||
unittest {
|
unittest {
|
||||||
foo([
|
foo([
|
||||||
target.value.region[1], target.value.region[1],
|
target.value.region[1], target.value.region[1], target.value.region[1],
|
||||||
target.value.region[1], target.value.region[1], target.value.region[1]
|
target.value.region[1], target.value.region[1]
|
||||||
]);
|
]);
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,23 +1,23 @@
|
||||||
unittest {
|
unittest {
|
||||||
Bson base = Bson([
|
Bson base = Bson([
|
||||||
"maps": Bson([
|
"maps": Bson([
|
||||||
Bson(["id": Bson(4), "comment": Bson("hello")]),
|
Bson(["id": Bson(4), "comment": Bson("hello")]),
|
||||||
Bson(["id": Bson(49), "comment": Bson(null)])
|
Bson(["id": Bson(49), "comment": Bson(null)])
|
||||||
]),
|
]),
|
||||||
"short": Bson(["a": "b", "c": "d"]),
|
"short": Bson(["a": "b", "c": "d"]),
|
||||||
"numbers": Bson([
|
"numbers": Bson([
|
||||||
1, 2, 3, 4, 5, 6, 7, 8, 9, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9,
|
1, 2, 3, 4, 5, 6, 7, 8, 9, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 0, 1, 2,
|
||||||
0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 0
|
3, 4, 5, 6, 7, 8, 9, 0
|
||||||
]),
|
]),
|
||||||
"shuffleOnReset": serializeToBson([
|
"shuffleOnReset": serializeToBson([
|
||||||
"all": false,
|
"all": false,
|
||||||
"selected": true,
|
"selected": true,
|
||||||
"maybe": false
|
"maybe": false
|
||||||
]),
|
]),
|
||||||
"resetOnEmpty": Bson(false),
|
"resetOnEmpty": Bson(false),
|
||||||
"applyMods": Bson(true),
|
"applyMods": Bson(true),
|
||||||
"sendComments": Bson(true)
|
"sendComments": Bson(true)
|
||||||
]);
|
]);
|
||||||
int[] x = [
|
int[] x = [
|
||||||
1, 2, 3, 4, 5, 6, 7, 8, 9, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 0, 1, 2, 3,
|
1, 2, 3, 4, 5, 6, 7, 8, 9, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 0, 1, 2, 3,
|
||||||
4, 5, 6, 7, 8, 9, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 0
|
4, 5, 6, 7, 8, 9, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 0
|
||||||
|
|
|
@ -1,25 +1,25 @@
|
||||||
auto find()
|
auto find()
|
||||||
{
|
{
|
||||||
return Map.findRange([
|
return Map.findRange([
|
||||||
"$and": [
|
"$and": [
|
||||||
["deleted": Bson(false)],
|
["deleted": Bson(false)],
|
||||||
[
|
[
|
||||||
"$or": Bson([
|
"$or": Bson([
|
||||||
serializeToBson(["forceUpdate": Bson(true)]),
|
serializeToBson(["forceUpdate": Bson(true)]),
|
||||||
serializeToBson([
|
serializeToBson([
|
||||||
"info.approved": ["$eq": Bson(1)],
|
"info.approved": ["$eq": Bson(1)],
|
||||||
"fetchDate": [
|
"fetchDate": [
|
||||||
"$lte": Bson(BsonDate(currentTime - 60.days))
|
"$lte": Bson(BsonDate(currentTime - 60.days))
|
||||||
]
|
]
|
||||||
]),
|
]),
|
||||||
serializeToBson([
|
serializeToBson([
|
||||||
"info.approved": ["$ne": Bson(1)],
|
"info.approved": ["$ne": Bson(1)],
|
||||||
"fetchDate": [
|
"fetchDate": [
|
||||||
"$lte": Bson(BsonDate(currentTime - 14.days))
|
"$lte": Bson(BsonDate(currentTime - 14.days))
|
||||||
]
|
]
|
||||||
])
|
])
|
||||||
])
|
])
|
||||||
]
|
|
||||||
]
|
]
|
||||||
]);
|
]
|
||||||
|
]);
|
||||||
}
|
}
|
||||||
|
|
|
@ -0,0 +1,37 @@
|
||||||
|
class C {
|
||||||
|
abstract void f1() //
|
||||||
|
in (true);
|
||||||
|
|
||||||
|
abstract void f2() /* */
|
||||||
|
in (true);
|
||||||
|
|
||||||
|
abstract bool f3() //
|
||||||
|
out (r; r);
|
||||||
|
|
||||||
|
abstract bool f4() /* */
|
||||||
|
out (r; r);
|
||||||
|
|
||||||
|
abstract void f5() //
|
||||||
|
do {
|
||||||
|
}
|
||||||
|
|
||||||
|
abstract void f6() /* */
|
||||||
|
do {
|
||||||
|
}
|
||||||
|
|
||||||
|
abstract bool f7() //
|
||||||
|
in (true) //
|
||||||
|
out (r; r) //
|
||||||
|
do //
|
||||||
|
{
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
abstract bool f8() /* */
|
||||||
|
in (true) /* */
|
||||||
|
out (r; r) /* */
|
||||||
|
do /* */
|
||||||
|
{
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,3 @@
|
||||||
|
void f() return
|
||||||
|
do {
|
||||||
|
}
|
|
@ -0,0 +1,6 @@
|
||||||
|
unittest {
|
||||||
|
functionLengthDoesMatter([
|
||||||
|
firstFunctionInChain("A").seconFunctionInChain("B").value,
|
||||||
|
firstFunctionInChain("A").seconFunctionInChain("B").value
|
||||||
|
]);
|
||||||
|
}
|
|
@ -0,0 +1,44 @@
|
||||||
|
unittest {
|
||||||
|
{
|
||||||
|
bool anotherTemplatedFunction(One, Two, Three)(One alpha, Two bravo,
|
||||||
|
Three charlie, double delta)
|
||||||
|
{
|
||||||
|
if (isNumeric!One && isNumeric!Two && isNumeric!Three && echo
|
||||||
|
&& foxtrot && golf && hotel && india && juliet) {
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
void f()
|
||||||
|
{
|
||||||
|
string a = "foo"
|
||||||
|
~ "bar" /* bar */
|
||||||
|
~ "baz";
|
||||||
|
}
|
||||||
|
|
||||||
|
unittest {
|
||||||
|
if (a) {
|
||||||
|
while (sBraceDepth == 0 && indents.topIsTemp()
|
||||||
|
&& ((indents.top != tok!"if" && indents.top != tok!"version")
|
||||||
|
|| !peekIs(tok!"else")))
|
||||||
|
a();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
unittest {
|
||||||
|
callFunc({ int i = 10; return i; });
|
||||||
|
callFunc({
|
||||||
|
int i = 10;
|
||||||
|
foo(alpha, bravo, charlie, delta, echo, foxtrot, golf, echo);
|
||||||
|
doStuff(withThings, andOtherStuff);
|
||||||
|
return i;
|
||||||
|
});
|
||||||
|
callFunc({
|
||||||
|
int i = 10;
|
||||||
|
foo(alpha_longVarName, bravo_longVarName, charlie_longVarName, delta_longVarName,
|
||||||
|
echo_longVarName, foxtrot_longVarName, golf_longVarName, echo_longVarName);
|
||||||
|
doStuff(withThings, andOtherStuff);
|
||||||
|
return i;
|
||||||
|
}, more_stuff);
|
||||||
|
}
|
|
@ -0,0 +1,36 @@
|
||||||
|
unittest {
|
||||||
|
{
|
||||||
|
bool anotherTemplatedFunction(One, Two, Three)(One alpha, Two bravo,
|
||||||
|
Three charlie, double delta)
|
||||||
|
{
|
||||||
|
if (isNumeric!One && isNumeric!Two && isNumeric!Three && echo
|
||||||
|
&& foxtrot && golf && hotel && india && juliet) {
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
unittest {
|
||||||
|
if (a) {
|
||||||
|
while (sBraceDepth == 0 && indents.topIsTemp()
|
||||||
|
&& ((indents.top != tok!"if" && indents.top != tok!"version") || !peekIs(tok!"else")))
|
||||||
|
a();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
unittest {
|
||||||
|
callFunc({ int i = 10; return i; });
|
||||||
|
callFunc({
|
||||||
|
int i = 10;
|
||||||
|
foo(alpha, bravo, charlie, delta, echo, foxtrot, golf, echo);
|
||||||
|
doStuff(withThings, andOtherStuff);
|
||||||
|
return i;
|
||||||
|
});
|
||||||
|
callFunc({
|
||||||
|
int i = 10;
|
||||||
|
foo(alpha_longVarName, bravo_longVarName, charlie_longVarName, delta_longVarName,
|
||||||
|
echo_longVarName, foxtrot_longVarName, golf_longVarName, echo_longVarName);
|
||||||
|
doStuff(withThings, andOtherStuff);
|
||||||
|
return i;
|
||||||
|
}, more_stuff);
|
||||||
|
}
|
Loading…
Reference in New Issue