File: ReflectionFunctionAbstract.hx

package info (click to toggle)
haxe 1%3A3.4.7-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 29,888 kB
  • sloc: ml: 106,129; ansic: 1,978; makefile: 609; cpp: 357; java: 349; cs: 323; python: 250; sh: 75; objc: 64; xml: 29
file content (35 lines) | stat: -rw-r--r-- 1,255 bytes parent folder | download
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
package php.reflection;


@:native('ReflectionFunctionAbstract')
extern class ReflectionFunctionAbstract implements Reflector {

    var name : String;

    function getClosureScopeClass() : ReflectionClass;
    function getClosureThis() : Dynamic;
    function getDocComment() : String;
    function getEndLine() : Int;
    // function getExtension() : ReflectionExtension;
    function getExtensionName() : String;
    function getFileName() : String;
    function getName() : String;
    function getNamespaceName() : String;
    function getNumberOfParameters() : Int;
    function getNumberOfRequiredParameters() : Int;
    // function getParameters() : NativeIndexedArray<ReflectionParameter>;
    // function getReturnType() : ReflectionType;
    function getShortName() : String;
    function getStartLine() : Int;
    function getStaticVariables() : NativeAssocArray<Dynamic>;
    function hasReturnType() : Bool;
    function inNamespace() : Bool;
    function isClosure() : Bool;
    function isDeprecated() : Bool;
    function isGenerator() : Bool;
    function isInternal() : Bool;
    function isUserDefined() : Bool;
    function isVariadic() : Bool;
    function returnsReference() : Bool;
    @:phpMagic function __toString() : String;
}