AOWP


aowp.parser.ast.AOWP_PHPQuestionExprElement
/parser/ast/PHPQuestionExprElement.class.php at line 20

Class AOWP_PHPQuestionExprElement

AOWP_PHPElement
└─AOWP_PHPQuestionExprElement

public class AOWP_PHPQuestionExprElement
extends AOWP_PHPElement

PHPQuestionExprElement PHPのASTにおける「?」を表すクラス 文法規則: unticked_statement 例: $a ? 2 : 1;

Author:
Ryoto Naruse /

Field Summary
mixed

$conditionExpr

mixed

$falseExpr

mixed

$trueExpr

Fields inherited from aowp.parser.ast.AOWP_PHPElement
NO_ARRAY, _line, parent, propertyIndex, propertyName
Constructor Summary

AOWP_PHPQuestionExprElement(mixed _line, mixed conditionExpr, mixed trueExpr, mixed falseExpr)

Method Summary
void

__toString()

void

kind()

Methods inherited from aowp.parser.ast.AOWP_PHPElement
__clone, __toString, getChildren, getParent, getParentContainer, getParentPropertyIndex, getParentPropertyName, initialize, kind, line, releaseInstance, setParent, setParentInfo

Field Detail

/parser/ast/PHPQuestionExprElement.class.php at line 22

conditionExpr

public mixed $conditionExpr

/parser/ast/PHPQuestionExprElement.class.php at line 24

falseExpr

public mixed $falseExpr

/parser/ast/PHPQuestionExprElement.class.php at line 23

trueExpr

public mixed $trueExpr

Constructor Detail

/parser/ast/PHPQuestionExprElement.class.php at line 26

AOWP_PHPQuestionExprElement

public AOWP_PHPQuestionExprElement(mixed _line, mixed conditionExpr, mixed trueExpr, mixed falseExpr)

Method Detail

/parser/ast/PHPQuestionExprElement.class.php at line 34

__toString

public void __toString()

/parser/ast/PHPQuestionExprElement.class.php at line 39

kind

public void kind()

AOWP