@@ -315,7 +315,7 @@ class Ellipsis extends Ellipsis_ {
315315}
316316
317317/**
318- * Immutable literal expressions (except tuples).
318+ * An immutable literal expression (except tuples).
319319 * Consists of string (both unicode and byte) literals and numeric literals.
320320 */
321321abstract class ImmutableLiteral extends Expr {
@@ -446,6 +446,8 @@ class Unicode extends StrConst {
446446 }
447447
448448 /**
449+ * Gets the quoted representation fo this string.
450+ *
449451 * The extractor puts quotes into the name of each string (to prevent "0" clashing with 0).
450452 * The following predicate help us match up a string/byte literals in the source
451453 * which the equivalent object.
@@ -685,7 +687,7 @@ class False extends BooleanLiteral {
685687 override boolean booleanValue ( ) { result = false }
686688}
687689
688- /** `None` */
690+ /** The `None` constant. */
689691class None extends NameConstant {
690692 /* syntax: None */
691693 None ( ) { name_consts ( this , "None" ) }
@@ -728,20 +730,20 @@ class Guard extends Guard_ {
728730/** A context in which an expression used */
729731class ExprContext extends ExprContext_ { }
730732
731- /** Load context, the context of var in len(var) */
733+ /** The load context, the context of var in len(var) */
732734class Load extends Load_ { }
733735
734- /** Store context, the context of var in var = 0 */
736+ /** The store context, the context of var in var = 0 */
735737class Store extends Store_ { }
736738
737- /** Delete context, the context of var in del var */
739+ /** The delete context, the context of var in del var */
738740class Del extends Del_ { }
739741
740- /** This is an artifact of the Python grammar which includes an AugLoad context, even though it is never used. */
741- library class AugLoad extends AugLoad_ { }
742+ /** The context of an augmented load. This is an artifact of the Python grammar which includes an AugLoad context, even though it is never used. */
743+ class AugLoad extends AugLoad_ { }
742744
743- /** Augmented store context, the context of var in var += 1 */
745+ /** The augmented store context, the context of var in var += 1 */
744746class AugStore extends AugStore_ { }
745747
746- /** Parameter context, the context of var in def f(var): pass */
748+ /** The parameter context, the context of var in def f(var): pass */
747749class Param extends Param_ { }
0 commit comments