| 10 | | stubClassLoader::load('net.stubbles.reflection.annotations.parser.stubAnnotationParserState', |
|---|
| 11 | | 'net.stubbles.reflection.annotations.parser.stubAnnotationParserAbstractState', |
|---|
| 12 | | 'net.stubbles.reflection.annotations.parser.stubAnnotationParserDefaultState', |
|---|
| 13 | | 'net.stubbles.reflection.annotations.parser.stubAnnotationParserAnnotationState', |
|---|
| 14 | | 'net.stubbles.reflection.annotations.parser.stubAnnotationParserAnnotationNameState', |
|---|
| 15 | | 'net.stubbles.reflection.annotations.parser.stubAnnotationParserAnnotationTypeState', |
|---|
| 16 | | 'net.stubbles.reflection.annotations.parser.stubAnnotationParserAnnotationParamsState', |
|---|
| 17 | | 'net.stubbles.reflection.annotations.parser.stubAnnotationParserAnnotationParamNameState', |
|---|
| 18 | | 'net.stubbles.reflection.annotations.parser.stubAnnotationParserAnnotationParamValueState' |
|---|
| | 10 | stubClassLoader::load('net.stubbles.reflection.annotations.parser.stubAnnotationParser', |
|---|
| | 11 | 'net.stubbles.reflection.annotations.parser.state.stubAnnotationDocblockState', |
|---|
| | 12 | 'net.stubbles.reflection.annotations.parser.state.stubAnnotationAnnotationState', |
|---|
| | 13 | 'net.stubbles.reflection.annotations.parser.state.stubAnnotationNameState', |
|---|
| | 14 | 'net.stubbles.reflection.annotations.parser.state.stubAnnotationParamNameState', |
|---|
| | 15 | 'net.stubbles.reflection.annotations.parser.state.stubAnnotationParamsState', |
|---|
| | 16 | 'net.stubbles.reflection.annotations.parser.state.stubAnnotationParamValueState', |
|---|
| | 17 | 'net.stubbles.reflection.annotations.parser.state.stubAnnotationTextState', |
|---|
| | 18 | 'net.stubbles.reflection.annotations.parser.state.stubAnnotationTypeState' |
|---|
| 31 | | * parser is inside the standard docblock |
|---|
| 32 | | */ |
|---|
| 33 | | const STATE_DEFAULT = 0; |
|---|
| 34 | | /** |
|---|
| 35 | | * parser is inside an annotation |
|---|
| 36 | | */ |
|---|
| 37 | | const STATE_ANNOTATION = 1; |
|---|
| 38 | | /** |
|---|
| 39 | | * parser is inside an annotation name |
|---|
| 40 | | */ |
|---|
| 41 | | const STATE_ANNOTATION_NAME = 2; |
|---|
| 42 | | /** |
|---|
| 43 | | * parser is inside an annotation type |
|---|
| 44 | | */ |
|---|
| 45 | | const STATE_ANNOTATION_TYPE = 3; |
|---|
| 46 | | /** |
|---|
| 47 | | * parser is inside the annotation params |
|---|
| 48 | | */ |
|---|
| 49 | | const STATE_PARAMS = 4; |
|---|
| 50 | | /** |
|---|
| 51 | | * parser is inside an annotation param nane |
|---|
| 52 | | */ |
|---|
| 53 | | const STATE_PARAM_NAME = 5; |
|---|
| 54 | | /** |
|---|
| 55 | | * parser is inside an annotation param value |
|---|
| 56 | | */ |
|---|
| 57 | | const STATE_PARAM_VALUE = 6; |
|---|
| 58 | | /** |
|---|
| 94 | | $this->states[self::STATE_DEFAULT] = new stubAnnotationParserDefaultState($this); |
|---|
| 95 | | $this->states[self::STATE_ANNOTATION] = new stubAnnotationParserAnnotationState($this); |
|---|
| 96 | | $this->states[self::STATE_ANNOTATION_NAME] = new stubAnnotationParserAnnotationNameState($this); |
|---|
| 97 | | $this->states[self::STATE_ANNOTATION_TYPE] = new stubAnnotationParserAnnotationTypeState($this); |
|---|
| 98 | | $this->states[self::STATE_PARAMS] = new stubAnnotationParserParamsState($this); |
|---|
| 99 | | $this->states[self::STATE_PARAM_NAME] = new stubAnnotationParserParamNameState($this); |
|---|
| 100 | | $this->states[self::STATE_PARAM_VALUE] = new stubAnnotationParserParamValueState($this); |
|---|
| | 65 | $this->states[stubAnnotationState::DOCBLOCK] = new stubAnnotationDocblockState($this); |
|---|
| | 66 | $this->states[stubAnnotationState::TEXT] = new stubAnnotationTextState($this); |
|---|
| | 67 | $this->states[stubAnnotationState::ANNOTATION] = new stubAnnotationAnnotationState($this); |
|---|
| | 68 | $this->states[stubAnnotationState::ANNOTATION_NAME] = new stubAnnotationNameState($this); |
|---|
| | 69 | $this->states[stubAnnotationState::ANNOTATION_TYPE] = new stubAnnotationTypeState($this); |
|---|
| | 70 | $this->states[stubAnnotationState::PARAMS] = new stubAnnotationParamsState($this); |
|---|
| | 71 | $this->states[stubAnnotationState::PARAM_NAME] = new stubAnnotationParamNameState($this); |
|---|
| | 72 | $this->states[stubAnnotationState::PARAM_VALUE] = new stubAnnotationParamValueState($this); |
|---|