forked from hhvm/hack-codegen
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathIHackCodegenConfig.php
More file actions
44 lines (39 loc) · 1.31 KB
/
IHackCodegenConfig.php
File metadata and controls
44 lines (39 loc) · 1.31 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
<?hh // strict
/**
* Copyright (c) 2015-present, Facebook, Inc.
* All rights reserved.
*
* This source code is licensed under the BSD-style license found in the
* LICENSE file in the root directory of this source tree. An additional grant
* of patent rights can be found in the PATENTS file in the same directory.
*/
/**
* Implement this interface to define a configuration to generate code.
* The config will need to be passed to some of the Codegen constructors,
* which will usually be wrapped in the codegen_* functions.
*/
interface IHackCodegenConfig {
/**
* Return an instance of the config, which will usually be a singleton.
*/
public static function getInstance(): this;
/**
* If a non-null value is returned, those lines will be added in the file
* header. It can be used for example to write a copyright notice.
*/
public function getFileHeader(): ?Vector<string>;
/**
* How many spaces will each indentation be.
*/
public function getSpacesPerIndentation(): int;
/**
* What's the max length of each line of code. Some methods will wrap code
* longer than this value.
*/
public function getMaxLineLength(): int;
/**
* Return the root directory for saving the generated files when relative
* paths are used.
*/
public function getRootDir(): string;
}