// This file was generated by proto-gen. Do not edit by hand. syntax = "proto3"; package github.semantic.python_terms; import "types.proto"; option java_package = "com.github.semantic.python_terms"; option go_package = "github.com/semantic/python_terms;python"; message PythonTerm { PythonSyntax syntax = 1; } message QualifiedName { oneof sum { QualifiedName qualifiedName = 1; RelativeQualifiedName relativeQualifiedName = 2; } message QualifiedName { repeated string paths = 1; } message RelativeQualifiedName { string path = 1; QualifiedName maybeQualifiedName = 2; } } message Alias { bytes aliasValue = 1; bytes aliasName = 2; } message PythonSyntax { oneof syntax { Comment comment = 1; Class class = 2; Comprehension comprehension = 3; Decorator decorator = 4; Function function = 5; Variable variable = 6; Plus plus = 7; Minus minus = 8; Times times = 9; DividedBy dividedBy = 10; Modulo modulo = 11; Power power = 12; Negate negate = 13; FloorDivision floorDivision = 14; And and = 15; Not not = 16; Or or = 17; XOr xOr = 18; BAnd bAnd = 19; BOr bOr = 20; BXOr bXOr = 21; LShift lShift = 22; RShift rShift = 23; Complement complement = 24; Call call = 25; LessThan lessThan = 26; LessThanEqual lessThanEqual = 27; GreaterThan greaterThan = 28; GreaterThanEqual greaterThanEqual = 29; Equal equal = 30; StrictEqual strictEqual = 31; Comparison comparison = 32; Enumeration enumeration = 33; ScopeResolution scopeResolution = 34; MemberAccess memberAccess = 35; Subscript subscript = 36; Member member = 37; Array array = 38; Boolean boolean = 39; Float float = 40; Hash hash = 41; Integer integer = 42; KeyValue keyValue = 43; Null null = 44; Set set = 45; String string = 46; TextElement textElement = 47; Tuple tuple = 48; Redirect redirect = 49; Assignment assignment = 50; Break break = 51; Catch catch = 52; Continue continue = 53; Else else = 54; Finally finally = 55; ForEach forEach = 56; If if = 57; Let let = 58; NoOp noOp = 59; Return return = 60; Statements statements = 61; Throw throw = 62; Try try = 63; While while = 64; Yield yield = 65; Ellipsis ellipsis = 66; Import import = 67; QualifiedImport qualifiedImport = 68; QualifiedAliasedImport qualifiedAliasedImport = 69; Context context = 70; Empty empty = 71; Error error = 72; Identifier identifier = 73; Annotation annotation = 74; List list = 75; } } message Comment { string commentContent = 1; } message Class { repeated PythonTerm classContext = 1; PythonTerm classIdentifier = 2; repeated PythonTerm classSuperclasses = 3; PythonTerm classBody = 4; } message Comprehension { PythonTerm comprehensionValue = 1; PythonTerm comprehensionBody = 2; } message Decorator { PythonTerm decoratorIdentifier = 1; repeated PythonTerm decoratorParamaters = 2; PythonTerm decoratorBody = 3; } message Function { repeated PythonTerm functionContext = 1; PythonTerm functionName = 2; repeated PythonTerm functionParameters = 3; PythonTerm functionBody = 4; } message Variable { PythonTerm variableName = 1; PythonTerm variableType = 2; PythonTerm variableValue = 3; } message Plus { PythonTerm lhs = 1; PythonTerm rhs = 2; } message Minus { PythonTerm lhs = 1; PythonTerm rhs = 2; } message Times { PythonTerm lhs = 1; PythonTerm rhs = 2; } message DividedBy { PythonTerm lhs = 1; PythonTerm rhs = 2; } message Modulo { PythonTerm lhs = 1; PythonTerm rhs = 2; } message Power { PythonTerm lhs = 1; PythonTerm rhs = 2; } message Negate { PythonTerm term = 1; } message FloorDivision { PythonTerm lhs = 1; PythonTerm rhs = 2; } message And { PythonTerm lhs = 1; PythonTerm rhs = 2; } message Not { PythonTerm term = 1; } message Or { PythonTerm lhs = 1; PythonTerm rhs = 2; } message XOr { PythonTerm lhs = 1; PythonTerm rhs = 2; } message BAnd { PythonTerm left = 1; PythonTerm right = 2; } message BOr { PythonTerm left = 1; PythonTerm right = 2; } message BXOr { PythonTerm left = 1; PythonTerm right = 2; } message LShift { PythonTerm left = 1; PythonTerm right = 2; } message RShift { PythonTerm left = 1; PythonTerm right = 2; } message Complement { PythonTerm value = 1; } message Call { repeated PythonTerm callContext = 1; PythonTerm callFunction = 2; repeated PythonTerm callParams = 3; PythonTerm callBlock = 4; } message LessThan { PythonTerm lhs = 1; PythonTerm rhs = 2; } message LessThanEqual { PythonTerm lhs = 1; PythonTerm rhs = 2; } message GreaterThan { PythonTerm lhs = 1; PythonTerm rhs = 2; } message GreaterThanEqual { PythonTerm lhs = 1; PythonTerm rhs = 2; } message Equal { PythonTerm lhs = 1; PythonTerm rhs = 2; } message StrictEqual { PythonTerm lhs = 1; PythonTerm rhs = 2; } message Comparison { PythonTerm lhs = 1; PythonTerm rhs = 2; } message Enumeration { PythonTerm enumerationStart = 1; PythonTerm enumerationEnd = 2; PythonTerm enumerationStep = 3; } message ScopeResolution { repeated PythonTerm scopes = 1; } message MemberAccess { PythonTerm lhs = 1; bytes rhs = 2; } message Subscript { PythonTerm lhs = 1; repeated PythonTerm rhs = 2; } message Member { PythonTerm lhs = 1; PythonTerm rhs = 2; } message Array { repeated PythonTerm arrayElements = 1; } message Boolean { bool booleanContent = 1; } message Float { string floatContent = 1; } message Hash { repeated PythonTerm hashElements = 1; } message Integer { string integerContent = 1; } message KeyValue { PythonTerm key = 1; PythonTerm value = 2; } message Null { } message Set { repeated PythonTerm setElements = 1; } message String { repeated PythonTerm stringElements = 1; } message TextElement { string textElementContent = 1; } message Tuple { repeated PythonTerm tupleContents = 1; } message Redirect { PythonTerm lhs = 1; PythonTerm rhs = 2; } message Assignment { repeated PythonTerm assignmentContext = 1; PythonTerm assignmentTarget = 2; PythonTerm assignmentValue = 3; } message Break { PythonTerm term = 1; } message Catch { PythonTerm catchException = 1; PythonTerm catchBody = 2; } message Continue { PythonTerm term = 1; } message Else { PythonTerm elseCondition = 1; PythonTerm elseBody = 2; } message Finally { PythonTerm term = 1; } message ForEach { PythonTerm forEachBinding = 1; PythonTerm forEachSubject = 2; PythonTerm forEachBody = 3; } message If { PythonTerm ifCondition = 1; PythonTerm ifThenBody = 2; PythonTerm ifElseBody = 3; } message Let { PythonTerm letVariable = 1; PythonTerm letValue = 2; PythonTerm letBody = 3; } message NoOp { PythonTerm value = 1; } message Return { PythonTerm term = 1; } message Statements { repeated PythonTerm statements = 1; } message Throw { PythonTerm value = 1; } message Try { PythonTerm tryBody = 1; repeated PythonTerm tryCatch = 2; } message While { PythonTerm whileCondition = 1; PythonTerm whileBody = 2; } message Yield { PythonTerm term = 1; } message Ellipsis { } message Import { QualifiedName importFrom = 1; repeated Alias importSymbols = 2; } message QualifiedImport { repeated string qualifiedImportFrom = 1; } message QualifiedAliasedImport { QualifiedName qualifiedAliasedImportFrom = 1; PythonTerm qualifiedAliasedImportAlias = 2; } message Context { repeated PythonTerm contextTerms = 1; PythonTerm contextSubject = 2; } message Empty { } message Error { repeated ErrorSite errorCallStack = 1; repeated string errorExpected = 2; string errorActual = 3; repeated PythonTerm errorChildren = 4; } message Identifier { bytes name = 1; } message Annotation { PythonTerm annotationSubject = 1; PythonTerm annotationType = 2; } message List { repeated PythonTerm listContent = 1; }