forked from hhvm/hack-codegen
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCodegenFunction.php
More file actions
31 lines (29 loc) · 925 Bytes
/
CodegenFunction.php
File metadata and controls
31 lines (29 loc) · 925 Bytes
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
<?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.
*/
/**
* Generate code for a function. Please don't use this class directly; instead
* use the function codegen_function. E.g.:
*
* codegen_function('justDoIt')
* ->addParameter('int $x = 3')
* ->setReturnType('string')
* ->setBody('return (string) $x;')
* ->render();
*
*/
final class CodegenFunction extends CodegenFunctionBase {
}
/* HH_FIXME[4033] variadic params with type constraints are not supported */
function codegen_function(string $name, ...$args): CodegenFunction {
return new CodegenFunction(
HackCodegenConfig::getInstance(),
vsprintf($name, $args),
);
}