Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
cloogle.org
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Cloogle
cloogle.org
Commits
e4c702ed
Commit
e4c702ed
authored
Jul 30, 2018
by
Mart Lubbers
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix brackets, title and document location
parent
acd51e4a
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
6 deletions
+6
-6
backend/Builtin/Syntax.icl
backend/Builtin/Syntax.icl
+6
-6
No files found.
backend/Builtin/Syntax.icl
View file @
e4c702ed
...
...
@@ -78,7 +78,7 @@ EXs :: !String !String -> SyntaxExample
EXs
s
c
=
{
example
=
c
,
cleanjs_start
=
Just
s
}
bs_basicvalues
=
{
syntax_title
=
"basicvalues"
{
syntax_title
=
"basic
values"
,
syntax_patterns
=
map
exact
[
"'.'"
,
"[+-]?
\\
d+"
,
"[+-]?0[0-7]+"
,
"[-+]?0x[0-9a-fA-F]+"
,
"'.'"
,
"True"
,
"False"
,
"E"
]
,
syntax_code
=
[
"0x..."
,
"0..."
,
"True"
,
"False"
,
"'...'"
,
"...E..."
]
,
syntax_description
=
...
...
@@ -86,19 +86,19 @@ bs_basicvalues =
"Integers can be either defined in decimal (default), octal (`0` prefix) or hexadecimal (`0x` prefix).
\n\n
"
+
"Characters can either be printable characters (except `'`) or an escape sequence.
\n\n
"
+
"Reals can be suffixed by a power of ten in the scientific notation.
\n\n
"
+
"Boolean values by their only inhabitants {{
True}} and {{False
}}.
\n\n
"
+
"Boolean values by their only inhabitants {{
`True`}} and {{`False`
}}.
\n\n
"
+
"Basic values can also be pattern matched with these notations."
,
syntax_doc_locations
=
[
CLR
4
"1.1"
"_Toc311798017"
]
,
syntax_doc_locations
=
[
CLR
4
"
4.
1.1"
"_Toc311798017"
]
,
syntax_examples
=
map
EX
[
"(42, -42, +42) // Tuple with 42, -42 and 42 in decimal"
,
"(052, -052, +052) // Tuple with 42, -42 and 42 in octal"
,
"(0x2a, -0x2a, +0x2A) // Tuple with 42, -42 and 42 in hexadecimal"
,
"('a', '
\\
x2a', '
\\
052') // Tuple with a normal character, a literal quote and twice the character with ordinal 42"
,
"('a', '
\\
x2a', '
\\
052')
// Tuple with a normal character, a literal quote and twice the character with ordinal 42"
,
"['
\\
n', '
\\
r', '
\\
f', '
\\
b', '
\\
t', '
\\
', '
\'
']
\n
"
+
" //All character escapes"
" //
All character escapes"
,
"(True, False) // All booleans in a tuple"
,
"(42.0, -42.0, 42E-10, +42.0E+10, -42.0E10)
\n
"
+
" //Several reals"
" //
Several reals"
]
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment