uk.co.badgersinfoil.metaas.dom
Interface ASNewExpression
- All Superinterfaces:
- Expression, Invocation, ScriptElement
public interface ASNewExpression
- extends Expression, Invocation
A constructor invocation, such as new MyThing()
.
It is legal for a constructor invocation to appear without arguments
(the parenthesis can be dropped e.g new Ctor
, rather than
new Ctor()
), and in this case, getArguments() will return null.
If the argument list is present, but empty, an empty List will be returned
instead.
- See Also:
ActionScriptFactory.newNewExpression(Expression, java.util.List)
Copyright © 2006-2008 David Holroyd. All Rights Reserved.