summaryrefslogtreecommitdiff
path: root/node_classes.py
diff options
context:
space:
mode:
authorEmile Anclin <emile.anclin@logilab.fr>2009-09-03 17:16:19 +0200
committerEmile Anclin <emile.anclin@logilab.fr>2009-09-03 17:16:19 +0200
commitd88b456a180996bf5588cb382118cddd747ae04f (patch)
tree25ad61b3e4d08cbaf7e61ea0810648106110463b /node_classes.py
parent0be98653e8f7ae63c4961b640f7f3c77ae484ca5 (diff)
downloadastroid-git-d88b456a180996bf5588cb382118cddd747ae04f.tar.gz
[R] steps toward collecting all methods of a node class in a place
Diffstat (limited to 'node_classes.py')
-rw-r--r--node_classes.py227
1 files changed, 227 insertions, 0 deletions
diff --git a/node_classes.py b/node_classes.py
new file mode 100644
index 00000000..361d2f0f
--- /dev/null
+++ b/node_classes.py
@@ -0,0 +1,227 @@
+
+# from lookup import NodeNG, StmtMixIn, LocalsDictMixIn
+
+
+class ArgumentsNG(object):# (Arguments, StmtMixIn, NodeNG)
+ """class representing an Arguments node"""
+
+
+class AssAttrNG(object):# (AssAttr, StmtMixIn, NodeNG)
+ """class representing an AssAttr node"""
+
+
+class AssNameNG(object):# (AssName, StmtMixIn, NodeNG)
+ """class representing an AssName node"""
+
+
+class AssertNG(object):# (Assert, NodeNG)
+ """class representing an Assert node"""
+
+
+class AssignNG(object):# (Assign, NodeNG)
+ """class representing an Assign node"""
+
+
+class AugAssignNG(object):# (AugAssign, NodeNG)
+ """class representing an AugAssign node"""
+
+
+class BackquoteNG(object):# (Backquote, StmtMixIn, NodeNG)
+ """class representing a Backquote node"""
+
+
+class BinOpNG(object):# (BinOp, StmtMixIn, NodeNG)
+ """class representing a BinOp node"""
+
+
+class BoolOpNG(object):# (BoolOp, StmtMixIn, NodeNG)
+ """class representing a BoolOp node"""
+
+
+class BreakNG(object):# (Break, NodeNG)
+ """class representing a Break node"""
+
+
+class CallFuncNG(object):# (CallFunc, StmtMixIn, NodeNG)
+ """class representing a CallFunc node"""
+
+
+class ClassNG(object):# (Class, NodeNG)
+ """class representing a Class node"""
+
+
+class CompareNG(object):# (Compare, StmtMixIn, NodeNG)
+ """class representing a Compare node"""
+
+
+class ComprehensionNG(object):# (Comprehension, StmtMixIn, NodeNG)
+ """class representing a Comprehension node"""
+
+
+class ConstNG(object):# (Const, StmtMixIn, NodeNG)
+ """class representing a Const node"""
+
+
+class ContinueNG(object):# (Continue, NodeNG)
+ """class representing a Continue node"""
+
+
+class DecoratorsNG(object):# (Decorators, StmtMixIn, NodeNG)
+ """class representing a Decorators node"""
+
+
+class DelAttrNG(object):# (DelAttr, StmtMixIn, NodeNG)
+ """class representing a DelAttr node"""
+
+
+class DelNameNG(object):# (DelName, StmtMixIn, NodeNG)
+ """class representing a DelName node"""
+
+
+class DeleteNG(object):# (Delete, NodeNG)
+ """class representing a Delete node"""
+
+
+class DictNG(object):# (Dict, StmtMixIn, NodeNG)
+ """class representing a Dict node"""
+
+
+class DiscardNG(object):# (Discard, NodeNG)
+ """class representing a Discard node"""
+
+
+class EllipsisNG(object):# (Ellipsis, StmtMixIn, NodeNG)
+ """class representing an Ellipsis node"""
+
+
+class EmptyNodeNG(object):# (EmptyNode, StmtMixIn, NodeNG)
+ """class representing an EmptyNode node"""
+
+
+class ExceptHandlerNG(object):# (ExceptHandler, NodeNG)
+ """class representing an ExceptHandler node"""
+
+
+class ExecNG(object):# (Exec, NodeNG)
+ """class representing an Exec node"""
+
+
+class ExtSliceNG(object):# (ExtSlice, StmtMixIn, NodeNG)
+ """class representing an ExtSlice node"""
+
+
+class ForNG(object):# (For, NodeNG)
+ """class representing a For node"""
+
+
+class FromNG(object):# (From, NodeNG)
+ """class representing a From node"""
+
+
+class FunctionNG(object):# (Function, NodeNG)
+ """class representing a Function node"""
+
+
+class GenExprNG(object):# (GenExpr, LocalsDictMixIn, StmtMixIn, NodeNG)
+ """class representing a GenExpr node"""
+
+
+class GetattrNG(object):# (Getattr, StmtMixIn, NodeNG)
+ """class representing a Getattr node"""
+
+
+class GlobalNG(object):# (Global, NodeNG)
+ """class representing a Global node"""
+
+
+class IfNG(object):# (If, NodeNG)
+ """class representing an If node"""
+
+
+class IfExpNG(object):# (IfExp, StmtMixIn, NodeNG)
+ """class representing an IfExp node"""
+
+
+class ImportNG(object):# (Import, NodeNG)
+ """class representing an Import node"""
+
+
+class IndexNG(object):# (Index, StmtMixIn, NodeNG)
+ """class representing an Index node"""
+
+
+class KeywordNG(object):# (Keyword, StmtMixIn, NodeNG)
+ """class representing a Keyword node"""
+
+
+class LambdaNG(object):# (Lambda, LocalsDictMixIn, StmtMixIn, NodeNG)
+ """class representing a Lambda node"""
+
+
+class ListNG(object):# (List, StmtMixIn, NodeNG)
+ """class representing a List node"""
+
+
+class ListCompNG(object):# (ListComp, StmtMixIn, NodeNG)
+ """class representing a ListComp node"""
+
+
+class ModuleNG(object):# (Module, StmtMixIn, NodeNG)
+ """class representing a Module node"""
+
+
+class NameNG(object):# (Name, StmtMixIn, NodeNG)
+ """class representing a Name node"""
+
+
+class PassNG(object):# (Pass, NodeNG)
+ """class representing a Pass node"""
+
+
+class PrintNG(object):# (Print, NodeNG)
+ """class representing a Print node"""
+
+
+class RaiseNG(object):# (Raise, NodeNG)
+ """class representing a Raise node"""
+
+
+class ReturnNG(object):# (Return, NodeNG)
+ """class representing a Return node"""
+
+
+class SliceNG(object):# (Slice, StmtMixIn, NodeNG)
+ """class representing a Slice node"""
+
+
+class SubscriptNG(object):# (Subscript, StmtMixIn, NodeNG)
+ """class representing a Subscript node"""
+
+
+class TryExceptNG(object):# (TryExcept, NodeNG)
+ """class representing a TryExcept node"""
+
+
+class TryFinallyNG(object):# (TryFinally, NodeNG)
+ """class representing a TryFinally node"""
+
+
+class TupleNG(object):# (Tuple, StmtMixIn, NodeNG)
+ """class representing a Tuple node"""
+
+
+class UnaryOpNG(object):# (UnaryOp, StmtMixIn, NodeNG)
+ """class representing an UnaryOp node"""
+
+
+class WhileNG(object):# (While, NodeNG)
+ """class representing a While node"""
+
+
+class WithNG(object):# (With, NodeNG)
+ """class representing a With node"""
+
+
+class YieldNG(object):# (Yield, NodeNG)
+ """class representing a Yield node"""
+