@@ -131,7 +131,6 @@ class Expr extends Expr_, AstNode {
131131/** An attribute expression, such as `value.attr` */
132132class Attribute extends Attribute_ {
133133
134- /* Special comment for documentation generation */
135134 /* syntax: Expr.name */
136135
137136 override Expr getASubExpression ( ) {
@@ -481,7 +480,6 @@ class FloatLiteral extends Num {
481480class ImaginaryLiteral extends Num {
482481 private float value ;
483482
484- /* Special comment for documentation generation */
485483 /* syntax: 1.0j */
486484
487485 ImaginaryLiteral ( ) {
@@ -541,7 +539,6 @@ class NegativeIntegerLiteral extends ImmutableLiteral, UnaryExpr {
541539 "hello" are treated as Bytes for Python2, but Unicode for Python3. */
542540class Unicode extends StrConst {
543541
544- /* Special comment for documentation generation */
545542 /* syntax: "hello" */
546543
547544 Unicode ( ) {
@@ -572,7 +569,6 @@ class Unicode extends StrConst {
572569/** A dictionary expression, such as `{'key':'value'}` */
573570class Dict extends Dict_ {
574571
575- /* Special comment for documentation generation */
576572 /* syntax: {Expr: Expr, ...} */
577573
578574 /** Gets the value of an item of this dict display */
@@ -600,7 +596,6 @@ class Dict extends Dict_ {
600596/** A list expression, such as `[ 1, 3, 5, 7, 9 ]` */
601597class List extends List_ {
602598
603- /* Special comment for documentation generation */
604599 /* syntax: [Expr, ...] */
605600
606601 override Expr getASubExpression ( ) {
@@ -612,7 +607,6 @@ class List extends List_ {
612607/** A set expression such as `{ 1, 3, 5, 7, 9 }` */
613608class Set extends Set_ {
614609
615- /* Special comment for documentation generation */
616610 /* syntax: {Expr, ...} */
617611
618612 override Expr getASubExpression ( ) {
@@ -749,7 +743,6 @@ class Slice extends Slice_ {
749743/** A string constant. */
750744class StrConst extends Str_ , ImmutableLiteral {
751745
752- /* Special comment for documentation generation */
753746 /* syntax: "hello" */
754747
755748 predicate isUnicode ( ) {
@@ -837,7 +830,6 @@ abstract class BooleanLiteral extends NameConstant {
837830/** The boolean named constant `True` */
838831class True extends BooleanLiteral {
839832
840- /* Special comment for documentation generation */
841833 /* syntax: True */
842834
843835 True ( ) {
@@ -857,7 +849,6 @@ class True extends BooleanLiteral {
857849/** The boolean named constant `False` */
858850class False extends BooleanLiteral {
859851
860- /* Special comment for documentation generation */
861852 /* syntax: False */
862853
863854 False ( ) {
@@ -877,7 +868,6 @@ class False extends BooleanLiteral {
877868/** `None` */
878869class None extends NameConstant {
879870
880- /* Special comment for documentation generation */
881871 /* syntax: None */
882872
883873 None ( ) {
@@ -896,7 +886,6 @@ class None extends NameConstant {
896886/** An await expression such as `await coro`. */
897887class Await extends Await_ {
898888
899- /* Special comment for documentation generation */
900889 /* syntax: await Expr */
901890
902891 override Expr getASubExpression ( ) {
0 commit comments