uk.co.badgersinfoil.metaas.dom
Interface ASRegexpLiteral

All Superinterfaces:
Expression, Literal, ScriptElement

public interface ASRegexpLiteral
extends Literal

A literal 'regular expression', such as /[a-z]+/

See Also:
ActionScriptFactory.newRegexpLiteral(String, int)

Field Summary
static int FLAG_DOT_ALL
          represents the 's' regexp flag
static int FLAG_EXTENDED
          represents the 'x' regexp flag
static int FLAG_GLOBAL
          represents the 'g' regexp flag
static int FLAG_IGNORE_CASE
          represents the 'i' regexp flag
static int FLAG_NONE
          represents no active flags for a regexp
 

Field Detail

FLAG_NONE

static final int FLAG_NONE
represents no active flags for a regexp

See Also:
Constant Field Values

FLAG_IGNORE_CASE

static final int FLAG_IGNORE_CASE
represents the 'i' regexp flag

See Also:
Constant Field Values

FLAG_GLOBAL

static final int FLAG_GLOBAL
represents the 'g' regexp flag

See Also:
Constant Field Values

FLAG_DOT_ALL

static final int FLAG_DOT_ALL
represents the 's' regexp flag

See Also:
Constant Field Values

FLAG_EXTENDED

static final int FLAG_EXTENDED
represents the 'x' regexp flag

See Also:
Constant Field Values


Copyright © 2006-2008 David Holroyd. All Rights Reserved.