PHP 클래스 GraphQL\Language\Token

파일 보기 프로젝트 열기: webonyx/graphql-php 1 사용 예제들

공개 프로퍼티들

프로퍼티 타입 설명
$column integer The 1-indexed column number at which this Token begins.
$end integer The character offset at which this Node ends.
$kind string The kind of Token (see one of constants above).
$line integer The 1-indexed line number on which this Token appears.
$next Token
$prev Token Tokens exist as nodes in a double-linked-list amongst all tokens including ignored tokens. is always the first node and the last.
$start integer The character offset at which this Node begins.
$value string | null

공개 메소드들

메소드 설명
__construct ( $kind, $start, $end, $line, $column, Token $previous = null, null $value = null ) Token constructor.
getDescription ( ) : string
getKindDescription ( $kind ) : mixed
toArray ( ) : array

메소드 상세

__construct() 공개 메소드

Token constructor.
public __construct ( $kind, $start, $end, $line, $column, Token $previous = null, null $value = null )
$kind
$start
$end
$line
$column
$previous Token
$value null

getDescription() 공개 메소드

public getDescription ( ) : string
리턴 string

getKindDescription() 공개 정적인 메소드

public static getKindDescription ( $kind ) : mixed
$kind
리턴 mixed

toArray() 공개 메소드

public toArray ( ) : array
리턴 array

프로퍼티 상세

$column 공개적으로 프로퍼티

The 1-indexed column number at which this Token begins.
public int $column
리턴 integer

$end 공개적으로 프로퍼티

The character offset at which this Node ends.
public int $end
리턴 integer

$kind 공개적으로 프로퍼티

The kind of Token (see one of constants above).
public string $kind
리턴 string

$line 공개적으로 프로퍼티

The 1-indexed line number on which this Token appears.
public int $line
리턴 integer

$next 공개적으로 프로퍼티

public Token,GraphQL\Language $next
리턴 Token

$prev 공개적으로 프로퍼티

Tokens exist as nodes in a double-linked-list amongst all tokens including ignored tokens. is always the first node and the last.
public Token,GraphQL\Language $prev
리턴 Token

$start 공개적으로 프로퍼티

The character offset at which this Node begins.
public int $start
리턴 integer

$value 공개적으로 프로퍼티

public string|null $value
리턴 string | null