forked from hhvm/hack-codegen
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathHackCodegenConfig.hack
More file actions
55 lines (45 loc) · 1.23 KB
/
HackCodegenConfig.hack
File metadata and controls
55 lines (45 loc) · 1.23 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
/*
* 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;
/**
* This class contains the default configuration for Hack code generation.
*/
final class HackCodegenConfig implements IHackCodegenConfig {
private string $rootDir = __DIR__;
private ?ICodegenFormatter $formatter = null;
public function getFileHeader(): ?vec<string> {
// If you want a header on each generated file, insert it here.
return null;
}
public function getSpacesPerIndentation(): int {
return 2;
}
public function getMaxLineLength(): int {
return 80;
}
public function shouldUseTabs(): bool {
return false;
}
public function getRootDir(): string {
return $this->rootDir;
}
public function getFormatter(): ?ICodegenFormatter {
return $this->formatter;
}
public function withRootDir(string $root): this {
$out = clone $this;
$out->rootDir = $root;
return $out;
}
public function withFormatter(ICodegenFormatter $formatter): this {
$out = clone $this;
$out->formatter = $formatter;
return $out;
}
}