From 69f52f16a1b997b185aab797e09bbf7792a824f3 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Wed, 28 Mar 2018 15:36:30 +0200 Subject: new package --- REFLECTION | 2061 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 2061 insertions(+) create mode 100644 REFLECTION (limited to 'REFLECTION') diff --git a/REFLECTION b/REFLECTION new file mode 100644 index 0000000..1cc25b9 --- /dev/null +++ b/REFLECTION @@ -0,0 +1,2061 @@ +Extension [ extension #79 cmark version 1.0.0 ] { + + - Constants [13] { + Constant [ integer CommonMark\Node\Lists\Delimit\Period ] { 1 } + Constant [ integer CommonMark\Node\Lists\Delimit\Paren ] { 2 } + Constant [ integer CommonMark\Render\Normal ] { 0 } + Constant [ integer CommonMark\Render\SourcePos ] { 2 } + Constant [ integer CommonMark\Render\HardBreaks ] { 4 } + Constant [ integer CommonMark\Render\Safe ] { 8 } + Constant [ integer CommonMark\Render\NoBreaks ] { 16 } + Constant [ integer CommonMark\Parser\Normal ] { 0 } + Constant [ integer CommonMark\Parser\Normalize ] { 256 } + Constant [ integer CommonMark\Parser\ValidateUTF8 ] { 512 } + Constant [ integer CommonMark\Parser\Smart ] { 1024 } + Constant [ integer CommonMark\Version ] { 7171 } + Constant [ string CommonMark\VersionString ] { 0.28.3 } + } + + - Functions { + Function [ function CommonMark\Parse ] { + + - Parameters [2] { + Parameter #0 [ $content ] + Parameter #1 [ $options ] + } + } + Function [ function CommonMark\Render ] { + + - Parameters [3] { + Parameter #0 [ CommonMark\Node $node ] + Parameter #1 [ $options ] + Parameter #2 [ $width ] + } + } + Function [ function CommonMark\Render\XML ] { + + - Parameters [2] { + Parameter #0 [ CommonMark\Node $node ] + Parameter #1 [ $options ] + } + } + Function [ function CommonMark\Render\HTML ] { + + - Parameters [2] { + Parameter #0 [ CommonMark\Node $node ] + Parameter #1 [ $options ] + } + } + Function [ function CommonMark\Render\Man ] { + + - Parameters [3] { + Parameter #0 [ CommonMark\Node $node ] + Parameter #1 [ $options ] + Parameter #2 [ $width ] + } + } + Function [ function CommonMark\Render\Latex ] { + + - Parameters [3] { + Parameter #0 [ CommonMark\Node $node ] + Parameter #1 [ $options ] + Parameter #2 [ $width ] + } + } + } + + - Classes [25] { + Interface [ interface CommonMark\Interfaces\IVisitor ] { + + - Constants [3] { + Constant [ public integer Done ] { 1 } + Constant [ public integer Enter ] { 2 } + Constant [ public integer Leave ] { 3 } + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [0] { + } + + - Methods [2] { + Method [ abstract public method enter ] { + + - Parameters [1] { + Parameter #0 [ CommonMark\Interfaces\IVisitable $node ] + } + } + + Method [ abstract public method leave ] { + + - Parameters [1] { + Parameter #0 [ CommonMark\Interfaces\IVisitable $node ] + } + } + } + } + + Interface [ interface CommonMark\Interfaces\IVisitable ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [0] { + } + + - Methods [1] { + Method [ abstract public method accept ] { + + - Parameters [1] { + Parameter #0 [ CommonMark\Interfaces\IVisitor $visitor ] + } + } + } + } + + Class [ abstract final class CommonMark\Node implements CommonMark\Interfaces\IVisitable, Traversable ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [9] { + Property [ public $parent ] + Property [ public $previous ] + Property [ public $next ] + Property [ public $lastChild ] + Property [ public $firstChild ] + Property [ public $startLine ] + Property [ public $endLine ] + Property [ public $startColumn ] + Property [ public $endColumn ] + } + + - Methods [7] { + Method [ public method appendChild ] { + + - Parameters [1] { + Parameter #0 [ CommonMark\Node $child ] + } + - Return [ CommonMark\Node ] + } + + Method [ public method prependChild ] { + + - Parameters [1] { + Parameter #0 [ CommonMark\Node $child ] + } + - Return [ CommonMark\Node ] + } + + Method [ public method insertBefore ] { + + - Parameters [1] { + Parameter #0 [ CommonMark\Node $sibling ] + } + - Return [ CommonMark\Node ] + } + + Method [ public method insertAfter ] { + + - Parameters [1] { + Parameter #0 [ CommonMark\Node $sibling ] + } + - Return [ CommonMark\Node ] + } + + Method [ public method replace ] { + + - Parameters [1] { + Parameter #0 [ CommonMark\Node $target ] + } + - Return [ CommonMark\Node ] + } + + Method [ public method unlink ] { + + - Parameters [0] { + } + } + + Method [ public method accept ] { + + - Parameters [1] { + Parameter #0 [ CommonMark\Interfaces\IVisitor $visitor ] + } + } + } + } + + Class [ final class CommonMark\Node\Text extends CommonMark\Node implements Traversable, CommonMark\Interfaces\IVisitable ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [10] { + Property [ public $parent ] + Property [ public $previous ] + Property [ public $next ] + Property [ public $lastChild ] + Property [ public $firstChild ] + Property [ public $startLine ] + Property [ public $endLine ] + Property [ public $startColumn ] + Property [ public $endColumn ] + Property [ public $literal ] + } + + - Methods [8] { + Method [ public method __construct ] { + + - Parameters [1] { + Parameter #0 [ $literal ] + } + } + + Method [ public method appendChild ] { + + - Parameters [1] { + Parameter #0 [ CommonMark\Node $child ] + } + - Return [ CommonMark\Node ] + } + + Method [ public method prependChild ] { + + - Parameters [1] { + Parameter #0 [ CommonMark\Node $child ] + } + - Return [ CommonMark\Node ] + } + + Method [ public method insertBefore ] { + + - Parameters [1] { + Parameter #0 [ CommonMark\Node $sibling ] + } + - Return [ CommonMark\Node ] + } + + Method [ public method insertAfter ] { + + - Parameters [1] { + Parameter #0 [ CommonMark\Node $sibling ] + } + - Return [ CommonMark\Node ] + } + + Method [ public method replace ] { + + - Parameters [1] { + Parameter #0 [ CommonMark\Node $target ] + } + - Return [ CommonMark\Node ] + } + + Method [ public method unlink ] { + + - Parameters [0] { + } + } + + Method [ public method accept ] { + + - Parameters [1] { + Parameter #0 [ CommonMark\Interfaces\IVisitor $visitor ] + } + } + } + } + + Class [ final class CommonMark\Node\Text\Emphasis extends CommonMark\Node implements Traversable, CommonMark\Interfaces\IVisitable ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [9] { + Property [ public $parent ] + Property [ public $previous ] + Property [ public $next ] + Property [ public $lastChild ] + Property [ public $firstChild ] + Property [ public $startLine ] + Property [ public $endLine ] + Property [ public $startColumn ] + Property [ public $endColumn ] + } + + - Methods [8] { + Method [ public method __construct ] { + + - Parameters [0] { + } + } + + Method [ public method appendChild ] { + + - Parameters [1] { + Parameter #0 [ CommonMark\Node $child ] + } + - Return [ CommonMark\Node ] + } + + Method [ public method prependChild ] { + + - Parameters [1] { + Parameter #0 [ CommonMark\Node $child ] + } + - Return [ CommonMark\Node ] + } + + Method [ public method insertBefore ] { + + - Parameters [1] { + Parameter #0 [ CommonMark\Node $sibling ] + } + - Return [ CommonMark\Node ] + } + + Method [ public method insertAfter ] { + + - Parameters [1] { + Parameter #0 [ CommonMark\Node $sibling ] + } + - Return [ CommonMark\Node ] + } + + Method [ public method replace ] { + + - Parameters [1] { + Parameter #0 [ CommonMark\Node $target ] + } + - Return [ CommonMark\Node ] + } + + Method [ public method unlink ] { + + - Parameters [0] { + } + } + + Method [ public method accept ] { + + - Parameters [1] { + Parameter #0 [ CommonMark\Interfaces\IVisitor $visitor ] + } + } + } + } + + Class [ final class CommonMark\Node\Text\Strong extends CommonMark\Node implements Traversable, CommonMark\Interfaces\IVisitable ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [9] { + Property [ public $parent ] + Property [ public $previous ] + Property [ public $next ] + Property [ public $lastChild ] + Property [ public $firstChild ] + Property [ public $startLine ] + Property [ public $endLine ] + Property [ public $startColumn ] + Property [ public $endColumn ] + } + + - Methods [8] { + Method [ public method __construct ] { + + - Parameters [0] { + } + } + + Method [ public method appendChild ] { + + - Parameters [1] { + Parameter #0 [ CommonMark\Node $child ] + } + - Return [ CommonMark\Node ] + } + + Method [ public method prependChild ] { + + - Parameters [1] { + Parameter #0 [ CommonMark\Node $child ] + } + - Return [ CommonMark\Node ] + } + + Method [ public method insertBefore ] { + + - Parameters [1] { + Parameter #0 [ CommonMark\Node $sibling ] + } + - Return [ CommonMark\Node ] + } + + Method [ public method insertAfter ] { + + - Parameters [1] { + Parameter #0 [ CommonMark\Node $sibling ] + } + - Return [ CommonMark\Node ] + } + + Method [ public method replace ] { + + - Parameters [1] { + Parameter #0 [ CommonMark\Node $target ] + } + - Return [ CommonMark\Node ] + } + + Method [ public method unlink ] { + + - Parameters [0] { + } + } + + Method [ public method accept ] { + + - Parameters [1] { + Parameter #0 [ CommonMark\Interfaces\IVisitor $visitor ] + } + } + } + } + + Class [ final class CommonMark\Node\Document extends CommonMark\Node implements Traversable, CommonMark\Interfaces\IVisitable ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [9] { + Property [ public $parent ] + Property [ public $previous ] + Property [ public $next ] + Property [ public $lastChild ] + Property [ public $firstChild ] + Property [ public $startLine ] + Property [ public $endLine ] + Property [ public $startColumn ] + Property [ public $endColumn ] + } + + - Methods [8] { + Method [ public method __construct ] { + + - Parameters [0] { + } + } + + Method [ public method appendChild ] { + + - Parameters [1] { + Parameter #0 [ CommonMark\Node $child ] + } + - Return [ CommonMark\Node ] + } + + Method [ public method prependChild ] { + + - Parameters [1] { + Parameter #0 [ CommonMark\Node $child ] + } + - Return [ CommonMark\Node ] + } + + Method [ public method insertBefore ] { + + - Parameters [1] { + Parameter #0 [ CommonMark\Node $sibling ] + } + - Return [ CommonMark\Node ] + } + + Method [ public method insertAfter ] { + + - Parameters [1] { + Parameter #0 [ CommonMark\Node $sibling ] + } + - Return [ CommonMark\Node ] + } + + Method [ public method replace ] { + + - Parameters [1] { + Parameter #0 [ CommonMark\Node $target ] + } + - Return [ CommonMark\Node ] + } + + Method [ public method unlink ] { + + - Parameters [0] { + } + } + + Method [ public method accept ] { + + - Parameters [1] { + Parameter #0 [ CommonMark\Interfaces\IVisitor $visitor ] + } + } + } + } + + Class [ final class CommonMark\Node\BlockQuote extends CommonMark\Node implements Traversable, CommonMark\Interfaces\IVisitable ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [9] { + Property [ public $parent ] + Property [ public $previous ] + Property [ public $next ] + Property [ public $lastChild ] + Property [ public $firstChild ] + Property [ public $startLine ] + Property [ public $endLine ] + Property [ public $startColumn ] + Property [ public $endColumn ] + } + + - Methods [8] { + Method [ public method __construct ] { + + - Parameters [0] { + } + } + + Method [ public method appendChild ] { + + - Parameters [1] { + Parameter #0 [ CommonMark\Node $child ] + } + - Return [ CommonMark\Node ] + } + + Method [ public method prependChild ] { + + - Parameters [1] { + Parameter #0 [ CommonMark\Node $child ] + } + - Return [ CommonMark\Node ] + } + + Method [ public method insertBefore ] { + + - Parameters [1] { + Parameter #0 [ CommonMark\Node $sibling ] + } + - Return [ CommonMark\Node ] + } + + Method [ public method insertAfter ] { + + - Parameters [1] { + Parameter #0 [ CommonMark\Node $sibling ] + } + - Return [ CommonMark\Node ] + } + + Method [ public method replace ] { + + - Parameters [1] { + Parameter #0 [ CommonMark\Node $target ] + } + - Return [ CommonMark\Node ] + } + + Method [ public method unlink ] { + + - Parameters [0] { + } + } + + Method [ public method accept ] { + + - Parameters [1] { + Parameter #0 [ CommonMark\Interfaces\IVisitor $visitor ] + } + } + } + } + + Class [ final class CommonMark\Node\OrderedList extends CommonMark\Node implements Traversable, CommonMark\Interfaces\IVisitable ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [12] { + Property [ public $parent ] + Property [ public $previous ] + Property [ public $next ] + Property [ public $lastChild ] + Property [ public $firstChild ] + Property [ public $startLine ] + Property [ public $endLine ] + Property [ public $startColumn ] + Property [ public $endColumn ] + Property [ public $tight ] + Property [ public $delimiter ] + Property [ public $start ] + } + + - Methods [8] { + Method [ public method __construct ] { + + - Parameters [3] { + Parameter #0 [ $tight ] + Parameter #1 [ $delimiter ] + Parameter #2 [ $start ] + } + } + + Method [ public method appendChild ] { + + - Parameters [1] { + Parameter #0 [ CommonMark\Node $child ] + } + - Return [ CommonMark\Node ] + } + + Method [ public method prependChild ] { + + - Parameters [1] { + Parameter #0 [ CommonMark\Node $child ] + } + - Return [ CommonMark\Node ] + } + + Method [ public method insertBefore ] { + + - Parameters [1] { + Parameter #0 [ CommonMark\Node $sibling ] + } + - Return [ CommonMark\Node ] + } + + Method [ public method insertAfter ] { + + - Parameters [1] { + Parameter #0 [ CommonMark\Node $sibling ] + } + - Return [ CommonMark\Node ] + } + + Method [ public method replace ] { + + - Parameters [1] { + Parameter #0 [ CommonMark\Node $target ] + } + - Return [ CommonMark\Node ] + } + + Method [ public method unlink ] { + + - Parameters [0] { + } + } + + Method [ public method accept ] { + + - Parameters [1] { + Parameter #0 [ CommonMark\Interfaces\IVisitor $visitor ] + } + } + } + } + + Class [ final class CommonMark\Node\BulletList extends CommonMark\Node implements Traversable, CommonMark\Interfaces\IVisitable ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [11] { + Property [ public $parent ] + Property [ public $previous ] + Property [ public $next ] + Property [ public $lastChild ] + Property [ public $firstChild ] + Property [ public $startLine ] + Property [ public $endLine ] + Property [ public $startColumn ] + Property [ public $endColumn ] + Property [ public $tight ] + Property [ public $delimiter ] + } + + - Methods [8] { + Method [ public method __construct ] { + + - Parameters [0] { + } + } + + Method [ public method appendChild ] { + + - Parameters [1] { + Parameter #0 [ CommonMark\Node $child ] + } + - Return [ CommonMark\Node ] + } + + Method [ public method prependChild ] { + + - Parameters [1] { + Parameter #0 [ CommonMark\Node $child ] + } + - Return [ CommonMark\Node ] + } + + Method [ public method insertBefore ] { + + - Parameters [1] { + Parameter #0 [ CommonMark\Node $sibling ] + } + - Return [ CommonMark\Node ] + } + + Method [ public method insertAfter ] { + + - Parameters [1] { + Parameter #0 [ CommonMark\Node $sibling ] + } + - Return [ CommonMark\Node ] + } + + Method [ public method replace ] { + + - Parameters [1] { + Parameter #0 [ CommonMark\Node $target ] + } + - Return [ CommonMark\Node ] + } + + Method [ public method unlink ] { + + - Parameters [0] { + } + } + + Method [ public method accept ] { + + - Parameters [1] { + Parameter #0 [ CommonMark\Interfaces\IVisitor $visitor ] + } + } + } + } + + Class [ final class CommonMark\Node\Item extends CommonMark\Node implements Traversable, CommonMark\Interfaces\IVisitable ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [9] { + Property [ public $parent ] + Property [ public $previous ] + Property [ public $next ] + Property [ public $lastChild ] + Property [ public $firstChild ] + Property [ public $startLine ] + Property [ public $endLine ] + Property [ public $startColumn ] + Property [ public $endColumn ] + } + + - Methods [8] { + Method [ public method __construct ] { + + - Parameters [0] { + } + } + + Method [ public method appendChild ] { + + - Parameters [1] { + Parameter #0 [ CommonMark\Node $child ] + } + - Return [ CommonMark\Node ] + } + + Method [ public method prependChild ] { + + - Parameters [1] { + Parameter #0 [ CommonMark\Node $child ] + } + - Return [ CommonMark\Node ] + } + + Method [ public method insertBefore ] { + + - Parameters [1] { + Parameter #0 [ CommonMark\Node $sibling ] + } + - Return [ CommonMark\Node ] + } + + Method [ public method insertAfter ] { + + - Parameters [1] { + Parameter #0 [ CommonMark\Node $sibling ] + } + - Return [ CommonMark\Node ] + } + + Method [ public method replace ] { + + - Parameters [1] { + Parameter #0 [ CommonMark\Node $target ] + } + - Return [ CommonMark\Node ] + } + + Method [ public method unlink ] { + + - Parameters [0] { + } + } + + Method [ public method accept ] { + + - Parameters [1] { + Parameter #0 [ CommonMark\Interfaces\IVisitor $visitor ] + } + } + } + } + + Class [ final class CommonMark\Node\CodeBlock extends CommonMark\Node\Text implements CommonMark\Interfaces\IVisitable, Traversable ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [11] { + Property [ public $parent ] + Property [ public $previous ] + Property [ public $next ] + Property [ public $lastChild ] + Property [ public $firstChild ] + Property [ public $startLine ] + Property [ public $endLine ] + Property [ public $startColumn ] + Property [ public $endColumn ] + Property [ public $literal ] + Property [ public $fence ] + } + + - Methods [8] { + Method [ public method __construct ] { + + - Parameters [2] { + Parameter #0 [ $fence ] + Parameter #1 [ $literal ] + } + } + + Method [ public method appendChild ] { + + - Parameters [1] { + Parameter #0 [ CommonMark\Node $child ] + } + - Return [ CommonMark\Node ] + } + + Method [ public method prependChild ] { + + - Parameters [1] { + Parameter #0 [ CommonMark\Node $child ] + } + - Return [ CommonMark\Node ] + } + + Method [ public method insertBefore ] { + + - Parameters [1] { + Parameter #0 [ CommonMark\Node $sibling ] + } + - Return [ CommonMark\Node ] + } + + Method [ public method insertAfter ] { + + - Parameters [1] { + Parameter #0 [ CommonMark\Node $sibling ] + } + - Return [ CommonMark\Node ] + } + + Method [ public method replace ] { + + - Parameters [1] { + Parameter #0 [ CommonMark\Node $target ] + } + - Return [ CommonMark\Node ] + } + + Method [ public method unlink ] { + + - Parameters [0] { + } + } + + Method [ public method accept ] { + + - Parameters [1] { + Parameter #0 [ CommonMark\Interfaces\IVisitor $visitor ] + } + } + } + } + + Class [ final class CommonMark\Node\HTMLBlock extends CommonMark\Node\Text implements CommonMark\Interfaces\IVisitable, Traversable ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [10] { + Property [ public $parent ] + Property [ public $previous ] + Property [ public $next ] + Property [ public $lastChild ] + Property [ public $firstChild ] + Property [ public $startLine ] + Property [ public $endLine ] + Property [ public $startColumn ] + Property [ public $endColumn ] + Property [ public $literal ] + } + + - Methods [8] { + Method [ public method __construct ] { + + - Parameters [1] { + Parameter #0 [ $literal ] + } + } + + Method [ public method appendChild ] { + + - Parameters [1] { + Parameter #0 [ CommonMark\Node $child ] + } + - Return [ CommonMark\Node ] + } + + Method [ public method prependChild ] { + + - Parameters [1] { + Parameter #0 [ CommonMark\Node $child ] + } + - Return [ CommonMark\Node ] + } + + Method [ public method insertBefore ] { + + - Parameters [1] { + Parameter #0 [ CommonMark\Node $sibling ] + } + - Return [ CommonMark\Node ] + } + + Method [ public method insertAfter ] { + + - Parameters [1] { + Parameter #0 [ CommonMark\Node $sibling ] + } + - Return [ CommonMark\Node ] + } + + Method [ public method replace ] { + + - Parameters [1] { + Parameter #0 [ CommonMark\Node $target ] + } + - Return [ CommonMark\Node ] + } + + Method [ public method unlink ] { + + - Parameters [0] { + } + } + + Method [ public method accept ] { + + - Parameters [1] { + Parameter #0 [ CommonMark\Interfaces\IVisitor $visitor ] + } + } + } + } + + Class [ final class CommonMark\Node\CustomBlock extends CommonMark\Node implements Traversable, CommonMark\Interfaces\IVisitable ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [11] { + Property [ public $parent ] + Property [ public $previous ] + Property [ public $next ] + Property [ public $lastChild ] + Property [ public $firstChild ] + Property [ public $startLine ] + Property [ public $endLine ] + Property [ public $startColumn ] + Property [ public $endColumn ] + Property [ public $onEnter ] + Property [ public $onLeave ] + } + + - Methods [8] { + Method [ public method __construct ] { + + - Parameters [0] { + } + } + + Method [ public method appendChild ] { + + - Parameters [1] { + Parameter #0 [ CommonMark\Node $child ] + } + - Return [ CommonMark\Node ] + } + + Method [ public method prependChild ] { + + - Parameters [1] { + Parameter #0 [ CommonMark\Node $child ] + } + - Return [ CommonMark\Node ] + } + + Method [ public method insertBefore ] { + + - Parameters [1] { + Parameter #0 [ CommonMark\Node $sibling ] + } + - Return [ CommonMark\Node ] + } + + Method [ public method insertAfter ] { + + - Parameters [1] { + Parameter #0 [ CommonMark\Node $sibling ] + } + - Return [ CommonMark\Node ] + } + + Method [ public method replace ] { + + - Parameters [1] { + Parameter #0 [ CommonMark\Node $target ] + } + - Return [ CommonMark\Node ] + } + + Method [ public method unlink ] { + + - Parameters [0] { + } + } + + Method [ public method accept ] { + + - Parameters [1] { + Parameter #0 [ CommonMark\Interfaces\IVisitor $visitor ] + } + } + } + } + + Class [ final class CommonMark\Node\Paragraph extends CommonMark\Node implements Traversable, CommonMark\Interfaces\IVisitable ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [9] { + Property [ public $parent ] + Property [ public $previous ] + Property [ public $next ] + Property [ public $lastChild ] + Property [ public $firstChild ] + Property [ public $startLine ] + Property [ public $endLine ] + Property [ public $startColumn ] + Property [ public $endColumn ] + } + + - Methods [8] { + Method [ public method __construct ] { + + - Parameters [0] { + } + } + + Method [ public method appendChild ] { + + - Parameters [1] { + Parameter #0 [ CommonMark\Node $child ] + } + - Return [ CommonMark\Node ] + } + + Method [ public method prependChild ] { + + - Parameters [1] { + Parameter #0 [ CommonMark\Node $child ] + } + - Return [ CommonMark\Node ] + } + + Method [ public method insertBefore ] { + + - Parameters [1] { + Parameter #0 [ CommonMark\Node $sibling ] + } + - Return [ CommonMark\Node ] + } + + Method [ public method insertAfter ] { + + - Parameters [1] { + Parameter #0 [ CommonMark\Node $sibling ] + } + - Return [ CommonMark\Node ] + } + + Method [ public method replace ] { + + - Parameters [1] { + Parameter #0 [ CommonMark\Node $target ] + } + - Return [ CommonMark\Node ] + } + + Method [ public method unlink ] { + + - Parameters [0] { + } + } + + Method [ public method accept ] { + + - Parameters [1] { + Parameter #0 [ CommonMark\Interfaces\IVisitor $visitor ] + } + } + } + } + + Class [ final class CommonMark\Node\Heading extends CommonMark\Node implements Traversable, CommonMark\Interfaces\IVisitable ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [10] { + Property [ public $parent ] + Property [ public $previous ] + Property [ public $next ] + Property [ public $lastChild ] + Property [ public $firstChild ] + Property [ public $startLine ] + Property [ public $endLine ] + Property [ public $startColumn ] + Property [ public $endColumn ] + Property [ public $level ] + } + + - Methods [8] { + Method [ public method __construct ] { + + - Parameters [0] { + } + } + + Method [ public method appendChild ] { + + - Parameters [1] { + Parameter #0 [ CommonMark\Node $child ] + } + - Return [ CommonMark\Node ] + } + + Method [ public method prependChild ] { + + - Parameters [1] { + Parameter #0 [ CommonMark\Node $child ] + } + - Return [ CommonMark\Node ] + } + + Method [ public method insertBefore ] { + + - Parameters [1] { + Parameter #0 [ CommonMark\Node $sibling ] + } + - Return [ CommonMark\Node ] + } + + Method [ public method insertAfter ] { + + - Parameters [1] { + Parameter #0 [ CommonMark\Node $sibling ] + } + - Return [ CommonMark\Node ] + } + + Method [ public method replace ] { + + - Parameters [1] { + Parameter #0 [ CommonMark\Node $target ] + } + - Return [ CommonMark\Node ] + } + + Method [ public method unlink ] { + + - Parameters [0] { + } + } + + Method [ public method accept ] { + + - Parameters [1] { + Parameter #0 [ CommonMark\Interfaces\IVisitor $visitor ] + } + } + } + } + + Class [ final class CommonMark\Node\ThematicBreak extends CommonMark\Node implements Traversable, CommonMark\Interfaces\IVisitable ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [9] { + Property [ public $parent ] + Property [ public $previous ] + Property [ public $next ] + Property [ public $lastChild ] + Property [ public $firstChild ] + Property [ public $startLine ] + Property [ public $endLine ] + Property [ public $startColumn ] + Property [ public $endColumn ] + } + + - Methods [8] { + Method [ public method __construct ] { + + - Parameters [0] { + } + } + + Method [ public method appendChild ] { + + - Parameters [1] { + Parameter #0 [ CommonMark\Node $child ] + } + - Return [ CommonMark\Node ] + } + + Method [ public method prependChild ] { + + - Parameters [1] { + Parameter #0 [ CommonMark\Node $child ] + } + - Return [ CommonMark\Node ] + } + + Method [ public method insertBefore ] { + + - Parameters [1] { + Parameter #0 [ CommonMark\Node $sibling ] + } + - Return [ CommonMark\Node ] + } + + Method [ public method insertAfter ] { + + - Parameters [1] { + Parameter #0 [ CommonMark\Node $sibling ] + } + - Return [ CommonMark\Node ] + } + + Method [ public method replace ] { + + - Parameters [1] { + Parameter #0 [ CommonMark\Node $target ] + } + - Return [ CommonMark\Node ] + } + + Method [ public method unlink ] { + + - Parameters [0] { + } + } + + Method [ public method accept ] { + + - Parameters [1] { + Parameter #0 [ CommonMark\Interfaces\IVisitor $visitor ] + } + } + } + } + + Class [ final class CommonMark\Node\SoftBreak extends CommonMark\Node implements Traversable, CommonMark\Interfaces\IVisitable ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [9] { + Property [ public $parent ] + Property [ public $previous ] + Property [ public $next ] + Property [ public $lastChild ] + Property [ public $firstChild ] + Property [ public $startLine ] + Property [ public $endLine ] + Property [ public $startColumn ] + Property [ public $endColumn ] + } + + - Methods [8] { + Method [ public method __construct ] { + + - Parameters [0] { + } + } + + Method [ public method appendChild ] { + + - Parameters [1] { + Parameter #0 [ CommonMark\Node $child ] + } + - Return [ CommonMark\Node ] + } + + Method [ public method prependChild ] { + + - Parameters [1] { + Parameter #0 [ CommonMark\Node $child ] + } + - Return [ CommonMark\Node ] + } + + Method [ public method insertBefore ] { + + - Parameters [1] { + Parameter #0 [ CommonMark\Node $sibling ] + } + - Return [ CommonMark\Node ] + } + + Method [ public method insertAfter ] { + + - Parameters [1] { + Parameter #0 [ CommonMark\Node $sibling ] + } + - Return [ CommonMark\Node ] + } + + Method [ public method replace ] { + + - Parameters [1] { + Parameter #0 [ CommonMark\Node $target ] + } + - Return [ CommonMark\Node ] + } + + Method [ public method unlink ] { + + - Parameters [0] { + } + } + + Method [ public method accept ] { + + - Parameters [1] { + Parameter #0 [ CommonMark\Interfaces\IVisitor $visitor ] + } + } + } + } + + Class [ final class CommonMark\Node\LineBreak extends CommonMark\Node implements Traversable, CommonMark\Interfaces\IVisitable ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [9] { + Property [ public $parent ] + Property [ public $previous ] + Property [ public $next ] + Property [ public $lastChild ] + Property [ public $firstChild ] + Property [ public $startLine ] + Property [ public $endLine ] + Property [ public $startColumn ] + Property [ public $endColumn ] + } + + - Methods [8] { + Method [ public method __construct ] { + + - Parameters [0] { + } + } + + Method [ public method appendChild ] { + + - Parameters [1] { + Parameter #0 [ CommonMark\Node $child ] + } + - Return [ CommonMark\Node ] + } + + Method [ public method prependChild ] { + + - Parameters [1] { + Parameter #0 [ CommonMark\Node $child ] + } + - Return [ CommonMark\Node ] + } + + Method [ public method insertBefore ] { + + - Parameters [1] { + Parameter #0 [ CommonMark\Node $sibling ] + } + - Return [ CommonMark\Node ] + } + + Method [ public method insertAfter ] { + + - Parameters [1] { + Parameter #0 [ CommonMark\Node $sibling ] + } + - Return [ CommonMark\Node ] + } + + Method [ public method replace ] { + + - Parameters [1] { + Parameter #0 [ CommonMark\Node $target ] + } + - Return [ CommonMark\Node ] + } + + Method [ public method unlink ] { + + - Parameters [0] { + } + } + + Method [ public method accept ] { + + - Parameters [1] { + Parameter #0 [ CommonMark\Interfaces\IVisitor $visitor ] + } + } + } + } + + Class [ final class CommonMark\Node\Code extends CommonMark\Node\Text implements CommonMark\Interfaces\IVisitable, Traversable ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [10] { + Property [ public $parent ] + Property [ public $previous ] + Property [ public $next ] + Property [ public $lastChild ] + Property [ public $firstChild ] + Property [ public $startLine ] + Property [ public $endLine ] + Property [ public $startColumn ] + Property [ public $endColumn ] + Property [ public $literal ] + } + + - Methods [8] { + Method [ public method __construct ] { + + - Parameters [1] { + Parameter #0 [ $literal ] + } + } + + Method [ public method appendChild ] { + + - Parameters [1] { + Parameter #0 [ CommonMark\Node $child ] + } + - Return [ CommonMark\Node ] + } + + Method [ public method prependChild ] { + + - Parameters [1] { + Parameter #0 [ CommonMark\Node $child ] + } + - Return [ CommonMark\Node ] + } + + Method [ public method insertBefore ] { + + - Parameters [1] { + Parameter #0 [ CommonMark\Node $sibling ] + } + - Return [ CommonMark\Node ] + } + + Method [ public method insertAfter ] { + + - Parameters [1] { + Parameter #0 [ CommonMark\Node $sibling ] + } + - Return [ CommonMark\Node ] + } + + Method [ public method replace ] { + + - Parameters [1] { + Parameter #0 [ CommonMark\Node $target ] + } + - Return [ CommonMark\Node ] + } + + Method [ public method unlink ] { + + - Parameters [0] { + } + } + + Method [ public method accept ] { + + - Parameters [1] { + Parameter #0 [ CommonMark\Interfaces\IVisitor $visitor ] + } + } + } + } + + Class [ final class CommonMark\Node\HTMLInline extends CommonMark\Node\Text implements CommonMark\Interfaces\IVisitable, Traversable ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [10] { + Property [ public $parent ] + Property [ public $previous ] + Property [ public $next ] + Property [ public $lastChild ] + Property [ public $firstChild ] + Property [ public $startLine ] + Property [ public $endLine ] + Property [ public $startColumn ] + Property [ public $endColumn ] + Property [ public $literal ] + } + + - Methods [8] { + Method [ public method __construct ] { + + - Parameters [1] { + Parameter #0 [ $literal ] + } + } + + Method [ public method appendChild ] { + + - Parameters [1] { + Parameter #0 [ CommonMark\Node $child ] + } + - Return [ CommonMark\Node ] + } + + Method [ public method prependChild ] { + + - Parameters [1] { + Parameter #0 [ CommonMark\Node $child ] + } + - Return [ CommonMark\Node ] + } + + Method [ public method insertBefore ] { + + - Parameters [1] { + Parameter #0 [ CommonMark\Node $sibling ] + } + - Return [ CommonMark\Node ] + } + + Method [ public method insertAfter ] { + + - Parameters [1] { + Parameter #0 [ CommonMark\Node $sibling ] + } + - Return [ CommonMark\Node ] + } + + Method [ public method replace ] { + + - Parameters [1] { + Parameter #0 [ CommonMark\Node $target ] + } + - Return [ CommonMark\Node ] + } + + Method [ public method unlink ] { + + - Parameters [0] { + } + } + + Method [ public method accept ] { + + - Parameters [1] { + Parameter #0 [ CommonMark\Interfaces\IVisitor $visitor ] + } + } + } + } + + Class [ final class CommonMark\Node\CustomInline extends CommonMark\Node implements Traversable, CommonMark\Interfaces\IVisitable ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [11] { + Property [ public $parent ] + Property [ public $previous ] + Property [ public $next ] + Property [ public $lastChild ] + Property [ public $firstChild ] + Property [ public $startLine ] + Property [ public $endLine ] + Property [ public $startColumn ] + Property [ public $endColumn ] + Property [ public $onEnter ] + Property [ public $onLeave ] + } + + - Methods [8] { + Method [ public method __construct ] { + + - Parameters [0] { + } + } + + Method [ public method appendChild ] { + + - Parameters [1] { + Parameter #0 [ CommonMark\Node $child ] + } + - Return [ CommonMark\Node ] + } + + Method [ public method prependChild ] { + + - Parameters [1] { + Parameter #0 [ CommonMark\Node $child ] + } + - Return [ CommonMark\Node ] + } + + Method [ public method insertBefore ] { + + - Parameters [1] { + Parameter #0 [ CommonMark\Node $sibling ] + } + - Return [ CommonMark\Node ] + } + + Method [ public method insertAfter ] { + + - Parameters [1] { + Parameter #0 [ CommonMark\Node $sibling ] + } + - Return [ CommonMark\Node ] + } + + Method [ public method replace ] { + + - Parameters [1] { + Parameter #0 [ CommonMark\Node $target ] + } + - Return [ CommonMark\Node ] + } + + Method [ public method unlink ] { + + - Parameters [0] { + } + } + + Method [ public method accept ] { + + - Parameters [1] { + Parameter #0 [ CommonMark\Interfaces\IVisitor $visitor ] + } + } + } + } + + Class [ final class CommonMark\Node\Link extends CommonMark\Node implements Traversable, CommonMark\Interfaces\IVisitable ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [11] { + Property [ public $parent ] + Property [ public $previous ] + Property [ public $next ] + Property [ public $lastChild ] + Property [ public $firstChild ] + Property [ public $startLine ] + Property [ public $endLine ] + Property [ public $startColumn ] + Property [ public $endColumn ] + Property [ public $url ] + Property [ public $title ] + } + + - Methods [8] { + Method [ public method __construct ] { + + - Parameters [2] { + Parameter #0 [ $url ] + Parameter #1 [ $title ] + } + } + + Method [ public method appendChild ] { + + - Parameters [1] { + Parameter #0 [ CommonMark\Node $child ] + } + - Return [ CommonMark\Node ] + } + + Method [ public method prependChild ] { + + - Parameters [1] { + Parameter #0 [ CommonMark\Node $child ] + } + - Return [ CommonMark\Node ] + } + + Method [ public method insertBefore ] { + + - Parameters [1] { + Parameter #0 [ CommonMark\Node $sibling ] + } + - Return [ CommonMark\Node ] + } + + Method [ public method insertAfter ] { + + - Parameters [1] { + Parameter #0 [ CommonMark\Node $sibling ] + } + - Return [ CommonMark\Node ] + } + + Method [ public method replace ] { + + - Parameters [1] { + Parameter #0 [ CommonMark\Node $target ] + } + - Return [ CommonMark\Node ] + } + + Method [ public method unlink ] { + + - Parameters [0] { + } + } + + Method [ public method accept ] { + + - Parameters [1] { + Parameter #0 [ CommonMark\Interfaces\IVisitor $visitor ] + } + } + } + } + + Class [ final class CommonMark\Node\Image extends CommonMark\Node implements Traversable, CommonMark\Interfaces\IVisitable ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [11] { + Property [ public $parent ] + Property [ public $previous ] + Property [ public $next ] + Property [ public $lastChild ] + Property [ public $firstChild ] + Property [ public $startLine ] + Property [ public $endLine ] + Property [ public $startColumn ] + Property [ public $endColumn ] + Property [ public $url ] + Property [ public $title ] + } + + - Methods [8] { + Method [ public method __construct ] { + + - Parameters [2] { + Parameter #0 [ $url ] + Parameter #1 [ $title ] + } + } + + Method [ public method appendChild ] { + + - Parameters [1] { + Parameter #0 [ CommonMark\Node $child ] + } + - Return [ CommonMark\Node ] + } + + Method [ public method prependChild ] { + + - Parameters [1] { + Parameter #0 [ CommonMark\Node $child ] + } + - Return [ CommonMark\Node ] + } + + Method [ public method insertBefore ] { + + - Parameters [1] { + Parameter #0 [ CommonMark\Node $sibling ] + } + - Return [ CommonMark\Node ] + } + + Method [ public method insertAfter ] { + + - Parameters [1] { + Parameter #0 [ CommonMark\Node $sibling ] + } + - Return [ CommonMark\Node ] + } + + Method [ public method replace ] { + + - Parameters [1] { + Parameter #0 [ CommonMark\Node $target ] + } + - Return [ CommonMark\Node ] + } + + Method [ public method unlink ] { + + - Parameters [0] { + } + } + + Method [ public method accept ] { + + - Parameters [1] { + Parameter #0 [ CommonMark\Interfaces\IVisitor $visitor ] + } + } + } + } + + Class [ final class CommonMark\Parser ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [0] { + } + + - Methods [3] { + Method [ public method __construct ] { + + - Parameters [1] { + Parameter #0 [ $options ] + } + } + + Method [ public method parse ] { + + - Parameters [1] { + Parameter #0 [ $buffer ] + } + } + + Method [ public method finish ] { + + - Parameters [0] { + } + } + } + } + } +} + -- cgit