2018-04-17 15:16:08 -04:00
|
|
|
[[painless-comments]]
|
|
|
|
=== Comments
|
|
|
|
|
2018-05-23 16:36:58 -04:00
|
|
|
Use a comment to annotate or explain code within a script. Use the `//` token
|
|
|
|
anywhere on a line to specify a single-line comment. All characters from the
|
|
|
|
`//` token to the end of the line are ignored. Use an opening `/*` token and a
|
|
|
|
closing `*/` token to specify a multi-line comment. Multi-line comments can
|
|
|
|
start anywhere on a line, and all characters in between the `/*` token and `*/`
|
Painless: Restructure/Clean Up of Spec Documentation (#31013)
Full restructure of the spec into new sections for operators, statements, scripts, functions, lambdas, and regexes. Split of operators into 6 sections, a table, reference, array, numeric, boolean, and general. Clean up of all operators sections. Sporadic clean up else where.
2018-06-07 20:11:56 -04:00
|
|
|
token are ignored. A comment is included anywhere within a script.
|
2018-04-17 15:16:08 -04:00
|
|
|
|
|
|
|
*Grammar*
|
Painless: Restructure/Clean Up of Spec Documentation (#31013)
Full restructure of the spec into new sections for operators, statements, scripts, functions, lambdas, and regexes. Split of operators into 6 sections, a table, reference, array, numeric, boolean, and general. Clean up of all operators sections. Sporadic clean up else where.
2018-06-07 20:11:56 -04:00
|
|
|
|
2018-04-17 15:16:08 -04:00
|
|
|
[source,ANTLR4]
|
|
|
|
----
|
|
|
|
SINGLE_LINE_COMMENT: '//' .*? [\n\r];
|
|
|
|
MULTI_LINE_COMMENT: '/*' .*? '*/';
|
|
|
|
----
|
|
|
|
|
|
|
|
*Examples*
|
|
|
|
|
2018-04-25 12:38:41 -04:00
|
|
|
* Single-line comments.
|
|
|
|
+
|
2018-04-17 15:16:08 -04:00
|
|
|
[source,Painless]
|
|
|
|
----
|
|
|
|
// single-line comment
|
|
|
|
|
|
|
|
int value; // single-line comment
|
|
|
|
----
|
2018-04-25 12:38:41 -04:00
|
|
|
+
|
|
|
|
* Multi-line comments.
|
|
|
|
+
|
2018-04-17 15:16:08 -04:00
|
|
|
[source,Painless]
|
|
|
|
----
|
|
|
|
/* multi-
|
|
|
|
line
|
|
|
|
comment */
|
|
|
|
|
|
|
|
int value; /* multi-
|
|
|
|
line
|
|
|
|
comment */ value = 0;
|
|
|
|
|
|
|
|
int value; /* multi-line
|
|
|
|
comment */
|
|
|
|
|
|
|
|
/* multi-line
|
|
|
|
comment */ int value;
|
|
|
|
|
|
|
|
int value; /* multi-line
|
|
|
|
comment */ value = 0;
|
|
|
|
|
|
|
|
int value; /* multi-line comment */ value = 0;
|
|
|
|
----
|