File tree Expand file tree Collapse file tree 2 files changed +6
-8
lines changed
ql/lib/codeql/swift/generated/expr Expand file tree Collapse file tree 2 files changed +6
-8
lines changed Original file line number Diff line number Diff line change @@ -6,15 +6,15 @@ import codeql.swift.elements.expr.LiteralExpr
66
77module Generated {
88 /**
9- * `#fileLiteral`, `#imageLiteral` and `#colorLiteral` expressions, which are used in playgrounds.
9+ * An instance of `#fileLiteral`, `#imageLiteral` or `#colorLiteral` expressions, which are used in playgrounds.
1010 */
1111 class ObjectLiteralExpr extends Synth:: TObjectLiteralExpr , LiteralExpr {
1212 override string getAPrimaryQlClass ( ) { result = "ObjectLiteralExpr" }
1313
1414 /**
15- * Gets the
16- * This is 0 for `#fileLiteral`, 1 for `#imageLiteral` and 2 for `#colorLiteral`.
17- * .
15+ * Gets the kind of this object literal expression.
16+ *
17+ * This is 0 for `#fileLiteral`, 1 for `#imageLiteral` and 2 for `#colorLiteral` .
1818 */
1919 int getKind ( ) {
2020 result = Synth:: convertObjectLiteralExprToRaw ( this ) .( Raw:: ObjectLiteralExpr ) .getKind ( )
Original file line number Diff line number Diff line change @@ -578,11 +578,9 @@ class NilLiteralExpr(LiteralExpr):
578578
579579class ObjectLiteralExpr (LiteralExpr ):
580580 """
581- `#fileLiteral`, `#imageLiteral` and `#colorLiteral` expressions, which are used in playgrounds.
581+ An instance of `#fileLiteral`, `#imageLiteral` or `#colorLiteral` expressions, which are used in playgrounds.
582582 """
583- kind : int | doc ("""
584- This is 0 for `#fileLiteral`, 1 for `#imageLiteral` and 2 for `#colorLiteral`.
585- """ )
583+ kind : int | desc ("""This is 0 for `#fileLiteral`, 1 for `#imageLiteral` and 2 for `#colorLiteral`.""" )
586584 arguments : list [Argument ] | child
587585
588586class OptionalTryExpr (AnyTryExpr ):
You can’t perform that action at this time.
0 commit comments