|
1 | 1 | import python |
2 | 2 |
|
3 | | -/** Syntactic node (Class, Function, Module, Expr, Stmt or Comprehension) corresponding to a flow node */ |
| 3 | +/** A syntactic node (Class, Function, Module, Expr, Stmt or Comprehension) corresponding to a flow node */ |
4 | 4 | abstract class AstNode extends AstNode_ { |
5 | 5 | /* |
6 | 6 | * Special comment for documentation generation. |
@@ -61,31 +61,31 @@ abstract class AstNode extends AstNode_ { |
61 | 61 | } |
62 | 62 |
|
63 | 63 | /* Parents */ |
64 | | -/** Internal implementation class */ |
| 64 | +/** The parent of a `Function`. Internal implementation class */ |
65 | 65 | class FunctionParent extends FunctionParent_ { } |
66 | 66 |
|
67 | | -/** Internal implementation class */ |
| 67 | +/** The parent of an `Arguments` node. Internal implementation class */ |
68 | 68 | class ArgumentsParent extends ArgumentsParent_ { } |
69 | 69 |
|
70 | | -/** Internal implementation class */ |
| 70 | +/** The parent of an `ExprList`. Internal implementation class */ |
71 | 71 | class ExprListParent extends ExprListParent_ { } |
72 | 72 |
|
73 | | -/** Internal implementation class */ |
| 73 | +/** The parent of an `ExprContext`. Internal implementation class */ |
74 | 74 | class ExprContextParent extends ExprContextParent_ { } |
75 | 75 |
|
76 | | -/** Internal implementation class */ |
| 76 | +/** The parent of a `StmtList`. Internal implementation class */ |
77 | 77 | class StmtListParent extends StmtListParent_ { } |
78 | 78 |
|
79 | | -/** Internal implementation class */ |
| 79 | +/** The parent of a `StrList`. Internal implementation class */ |
80 | 80 | class StrListParent extends StrListParent_ { } |
81 | 81 |
|
82 | | -/** Internal implementation class */ |
| 82 | +/** The parent of an `Expr`. Internal implementation class */ |
83 | 83 | class ExprParent extends ExprParent_ { } |
84 | 84 |
|
85 | | -/** Internal implementation class */ |
| 85 | +/** The parent of a `PatternList`. Internal implementation class */ |
86 | 86 | class PatternListParent extends PatternListParent_ { } |
87 | 87 |
|
88 | | -/** Internal implementation class */ |
| 88 | +/** The parent of a `Pattern`. Internal implementation class */ |
89 | 89 | class PatternParent extends PatternParent_ { } |
90 | 90 |
|
91 | 91 | class DictItem extends DictItem_, AstNode { |
@@ -120,7 +120,7 @@ class Comprehension extends Comprehension_, AstNode { |
120 | 120 | class BytesOrStr extends BytesOrStr_ { } |
121 | 121 |
|
122 | 122 | /** |
123 | | - * Part of a string literal formed by implicit concatenation. |
| 123 | + * A part of a string literal formed by implicit concatenation. |
124 | 124 | * For example the string literal "abc" expressed in the source as `"a" "b" "c"` |
125 | 125 | * would be composed of three `StringPart`s. |
126 | 126 | */ |
|
0 commit comments