Class org.as2lib.regexp.node.Node

Description

Node is a base class for all node classes. Subclasses should override the match() method as appropriate. This class is an accepting node, so its match() always returns true.

Method Index

new Node()
dup(), getNext(), match(), setNext(), study()

Inherited from BasicClass

Constructor Detail

Node

public function Node()

Method Detail

dup

public function dup(flag:Boolean):Node

match

public function match(matcher:Object, i:Number, seq:String):Boolean

This method implements the classic accept node.

study

public function study(info:TreeInfo):Boolean

This method is good for all zero length assertions.

getNext

public function getNext(Void):Node

setNext

public function setNext(next:Node):Void