forked from hhvm/hhast
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathHHClientLinterTest.hack
More file actions
59 lines (54 loc) · 1.29 KB
/
HHClientLinterTest.hack
File metadata and controls
59 lines (54 loc) · 1.29 KB
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
/*
* Copyright (c) 2017-present, Facebook, Inc.
* All rights reserved.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*
*/
namespace Facebook\HHAST;
final class HHClientLinterTest extends TestCase {
use LinterTestTrait;
use HHClientLinterTestTrait;
<<__Override>>
public function getCleanExamples(): vec<(string)> {
return vec[
tuple("<?hh\nclass Foo {}"),
tuple(
'<?hh
function invalid_null_check(): void {
$cannot_be_null = 42;
// HHAST_FIXME[5611]
if ($cannot_be_null is null) {
throw new Exception();
}
}',
),
tuple(
'<?hh
function dont_clone(): void {
// HHAST_FIXME[5562]
clone shape();
}',
),
tuple(
'<?hh
function invalid_null_check(): void {
$cannot_be_null = 42;
// HHAST_IGNORE_ERROR[5611]
if ($cannot_be_null is null) {
throw new Exception();
}
}',
),
tuple(
'<?hh
function dont_clone(): void {
// HHAST_IGNORE_ERROR[5562]
clone shape();
}',
),
];
}
const HHClientLinter::TConfig CONFIG = shape();
}