mirror of
https://github.com/honeymoose/OpenSearch.git
synced 2025-03-09 14:34:43 +00:00
Created a flatter structure for the different sections. Cleaned up comments, keywords, and literals. Used callouts for examples where it made sense.
14 lines
354 B
Plaintext
14 lines
354 B
Plaintext
[[painless-keywords]]
|
|
=== Keywords
|
|
|
|
The keywords in the table below are reserved for built-in language
|
|
features. These keywords cannot be used as <<identifiers, identifiers>> or
|
|
<<painless-types, types>>.
|
|
|
|
[cols="^1,^1,^1,^1,^1"]
|
|
|====
|
|
| if | else | while | do | for
|
|
| in | continue | break | return | new
|
|
| try | catch | throw | this | instanceof
|
|
|====
|