package ast

Mouse Melon logoGet desktop application:
View/edit binary Protocol Buffers messages

message Alias

ast.proto:42

Used in: Node

message AnnAssign

ast.proto:58

Used in: Node

message Arg

ast.proto:66

Used in: Arguments, Node

message Arguments

ast.proto:72

Used in: AsyncFunctionDef, FunctionDef, Node

message Assign

ast.proto:93

Used in: Node

message AsyncFor

ast.proto:78

Used in: Node

message AsyncFunctionDef

ast.proto:85

Used in: Node

message Attribute

ast.proto:52

Used in: Node

message Await

ast.proto:47

Used in: Node

message Call

ast.proto:100

Used in: Node

message ClassDef

ast.proto:107

Used in: Node

message Comment

ast.proto:118

The Python ast module does not parse comments. It's not clear if this is the best way to support them in the AST

Used in: Node

message Compare

ast.proto:123

Used in: Node

message Constant

ast.proto:130

Used in: Node

message Dict

ast.proto:139

Used in: Node

message Expr

ast.proto:145

Used in: Node

message For

ast.proto:150

Used in: Node

message FunctionDef

ast.proto:157

Used in: Node

message If

ast.proto:165

Used in: Node

message Import

ast.proto:172

Used in: Node

message ImportFrom

ast.proto:177

Used in: Node

message ImportGroup

ast.proto:196

Imports are always put at the top of the file, just after any module comments and docstrings, and before module globals and constants. Imports should be grouped in the following order: Standard library imports. Related third party imports. Local application/library specific imports. You should put a blank line between each group of imports. https://www.python.org/dev/peps/pep-0008/#imports

Used in: Node

message Is

ast.proto:201

Used in: Node

(message has no fields)

message Keyword

ast.proto:205

Used in: Call, Node

message Module

ast.proto:211

Used in: Node

message Name

ast.proto:216

Used in: AnnAssign, Node, Subscript

message Node

ast.proto:7

Used in: AnnAssign, Arg, Assign, AsyncFor, AsyncFunctionDef, Attribute, Await, Call, ClassDef, Compare, Dict, Expr, For, FunctionDef, If, Import, ImportFrom, ImportGroup, Keyword, Module, Return, Subscript, Yield

message Pass

ast.proto:221

Used in: Node

(message has no fields)

message Return

ast.proto:225

Used in: Node

message Subscript

ast.proto:231

Used in: Node

message Yield

ast.proto:237

Used in: Node