Top Fields Constructors Methods
org.python.indexer.ast

public Class NClassDef

extends NNode
Class Inheritance
Imports
org.python.indexer.Builtins, .Indexer, .NBinding, .Scope, org.python.indexer.types.NClassType, .NDictType, .NTupleType, .NType, .NUnknownType, java.util.ArrayList, .List

Field Summary

Modifier and TypeField and Description
public List<NNode>
public NBody
public NName
pack-priv static final long
Inherited from org.python.indexer.ast.NNode:
parent

Constructor Summary

AccessConstructor and Description
public
NClassDef(NName name, List<NNode> bases, NBlock body)

public
NClassDef(NName name, List<NNode> bases, NBlock body, int start, int end)

Method Summary

Modifier and TypeMethod and Description
private void
protected void
bindNames(Scope s)

Overrides org.python.indexer.ast.NNode.bindNames.

Called by resolver to bind names into the passed scope.

public boolean
bindsName()

Overrides org.python.indexer.ast.NNode.bindsName.

Returns true if this is a name-binding node.

public boolean
public NType
resolve(Scope s)

Overrides org.python.indexer.ast.NNode.resolve.

Node should set the resolved type in its type field and also return it.

public String
toString()

Overrides java.lang.Object.toString.

Returns a string representation of the object.

public void
visit(NNodeVisitor
the object to call with this node. If the visitor returns true, the node also passes its children to the visitor.
v
)

Implements abstract org.python.indexer.ast.NNode.visit.

Visits this node and optionally its children.

Inherited from org.python.indexer.ast.NNode:
addChildrenaddChildrenaddErroraddErroraddTypeaddWarningaddWarningendgetAstRootgetDeepestNodeAtOffsetgetEnclosingNamespacegetFilegetParentgetTablegetTypeisCallisFunctionDefisLambdaisModuleisNamelengthresolveExprresolveListresolveListAsUnionsetEndsetParentsetStartsetTypestartvisitNodevisitNodeList

Field Detail

basesback to summary
public List<NNode> bases
bodyback to summary
public NBody body
nameback to summary
public NName name
serialVersionUIDback to summary
pack-priv static final long serialVersionUID

Hides org.python.indexer.ast.NNode.serialVersionUID.

Constructor Detail

NClassDefback to summary
public NClassDef(NName name, List<NNode> bases, NBlock body)
NClassDefback to summary
public NClassDef(NName name, List<NNode> bases, NBlock body, int start, int end)

Method Detail

addSpecialAttributeback to summary
private void addSpecialAttribute(String name, NType proptype)
bindNamesback to summary
protected void bindNames(Scope s) throws Exception

Overrides org.python.indexer.ast.NNode.bindNames.

Doc from org.python.indexer.ast.NNode.bindNames.

Called by resolver to bind names into the passed scope.

Annotations
@Override
bindsNameback to summary
public boolean bindsName()

Overrides org.python.indexer.ast.NNode.bindsName.

Doc from org.python.indexer.ast.NNode.bindsName.

Returns true if this is a name-binding node. Includes functions/lambdas, function/lambda params, classes, assignments, imports, and implicit assignment via for statements and except clauses.

Annotations
@Override
isClassDefback to summary
public boolean isClassDef()

Overrides org.python.indexer.ast.NNode.isClassDef.

Annotations
@Override
resolveback to summary
public NType resolve(Scope s) throws Exception

Overrides org.python.indexer.ast.NNode.resolve.

Doc from org.python.indexer.ast.NNode.resolve.

Node should set the resolved type in its type field and also return it.

Annotations
@Override
toStringback to summary
public String toString()

Overrides java.lang.Object.toString.

Doc from java.lang.Object.toString.

Returns a string representation of the object. Satisfying this method's contract implies a non-null result must be returned.

Returns:String

a string representation of the object

Annotations
@Override

visitback to summary
public void visit(NNodeVisitor v)

Implements abstract org.python.indexer.ast.NNode.visit.

Doc from org.python.indexer.ast.NNode.visit.

Visits this node and optionally its children.

Parameters
v:NNodeVisitor

the object to call with this node. If the visitor returns true, the node also passes its children to the visitor.

Annotations
@Override