forked from hhvm/hack-codegen
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCodegenTrait.hack
More file actions
71 lines (62 loc) · 1.92 KB
/
CodegenTrait.hack
File metadata and controls
71 lines (62 loc) · 1.92 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
60
61
62
63
64
65
66
67
68
69
70
71
/*
* Copyright (c) 2015-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\HackCodegen;
use namespace HH\Lib\C;
/**
* Generate code for a trait. Please don't use this class directly; instead use
* the function codegen_trait. E.g.:
*
* codegen_trait('Foo')
* ->addMethod(codegen_method('foobar'))
* ->render();
*
*/
final class CodegenTrait extends CodegenClassish {
use CodegenClassWithInterfaces;
private vec<string> $requireClass = vec[];
private vec<string> $requireInterface = vec[];
public function addRequireClass(string $class): this {
$this->requireClass[] = $class;
return $this;
}
public function addRequireInterface(string $interface): this {
$this->requireInterface[] = $interface;
return $this;
}
<<__Override>>
protected function buildDeclaration(HackBuilder $builder): void {
$generics_dec = $this->buildGenericsDeclaration();
$builder->add('trait '.$this->name.$generics_dec);
$this->renderInterfaceList($builder, 'implements');
}
private function buildRequires(HackBuilder $builder): void {
if (
C\is_empty($this->requireClass) && C\is_empty($this->requireInterface)
) {
return;
}
$builder->ensureEmptyLine();
foreach ($this->requireClass as $class) {
$builder->addLinef('require extends %s;', $class);
}
foreach ($this->requireInterface as $interface) {
$builder->addLinef('require implements %s;', $interface);
}
}
<<__Override>>
protected function appendBodyToBuilder(HackBuilder $builder): void {
$this->buildRequires($builder);
$this->buildTraits($builder);
$this->buildConsts($builder);
$this->buildXHPAttributes($builder);
$this->buildVars($builder);
$this->buildManualDeclarations($builder);
$this->buildMethods($builder);
}
}