PHP 클래스 Kahlan\Jit\Node\FunctionDef

상속: extends NodeDef
파일 보기 프로젝트 열기: crysalead/kahlan 1 사용 예제들

공개 프로퍼티들

프로퍼티 타입 설명
$args array The arguments of the function.
$isClosure boolean Boolean indicating if this function is a closure.
$isGenerator boolean Boolean indicating if this function is a generator function.
$isMethod boolean Boolean indicating if this function is a method.
$name string The name of the function.
$type string The node's type.
$visibility boolean Boolean indicating the visibilty of the method.

공개 메소드들

메소드 설명
argsToParams ( ) : string Returns function's arguments into a list of callable parameters

메소드 상세

argsToParams() 공개 메소드

Returns function's arguments into a list of callable parameters
public argsToParams ( ) : string
리턴 string

프로퍼티 상세

$args 공개적으로 프로퍼티

The arguments of the function.
public array $args
리턴 array

$isClosure 공개적으로 프로퍼티

Boolean indicating if this function is a closure.
public bool $isClosure
리턴 boolean

$isGenerator 공개적으로 프로퍼티

Boolean indicating if this function is a generator function.
public bool $isGenerator
리턴 boolean

$isMethod 공개적으로 프로퍼티

Boolean indicating if this function is a method.
public bool $isMethod
리턴 boolean

$name 공개적으로 프로퍼티

The name of the function.
public string $name
리턴 string

$type 공개적으로 프로퍼티

The node's type.
public string $type
리턴 string

$visibility 공개적으로 프로퍼티

Boolean indicating the visibilty of the method.
public bool $visibility
리턴 boolean