Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Raphaël Cauderlier
Sigmaid
Commits
f72df0c2
Commit
f72df0c2
authored
Jun 27, 2014
by
Raphaël Cauderlier
Browse files
Typos
parent
d72f856b
Changes
1
Show whitespace changes
Inline
Side-by-side
lexer.mll
View file @
f72df0c2
...
@@ -3,14 +3,14 @@
...
@@ -3,14 +3,14 @@
exception
Unexpected_char
of
char
exception
Unexpected_char
of
char
}
}
let
id
=
[
'
a'
-
'
z'
]
[
'
a'
-
'
z'
'
A'
-
'
Z'
'
_'
'
0
'
-
'
9
'
]
*
in
let
id
=
[
'
a'
-
'
z'
]
[
'
a'
-
'
z'
'
A'
-
'
Z'
'
_'
'
0
'
-
'
9
'
]
*
rule
token
=
parse
rule
token
=
parse
|
[
'
'
'\t'
]
{
token
lexbuf
}
|
[
'
'
'\t'
]
{
token
lexbuf
}
|
'\n'
{
token
lexbuf
}
|
'\n'
{
token
lexbuf
}
|
'.'
(
id
as
s
)
"<="
{
UPDATE
(
s
)
}
|
'.'
(
id
as
s
)
"<="
{
UPDATE
(
s
)
}
|
'.'
(
id
as
s
)
{
SELECT
(
s
)
}
|
'.'
(
id
as
s
)
{
SELECT
(
s
)
}
|
'.'
(
i
s
as
s
)
":="
{
FUPD
(
s
)
}
|
'.'
(
i
d
as
s
)
":="
{
FUPD
(
s
)
}
|
'
[
'
{
LBRACK
}
|
'
[
'
{
LBRACK
}
|
'
]
'
{
RBRACK
}
|
'
]
'
{
RBRACK
}
|
'
:
'
{
COLUMN
}
|
'
:
'
{
COLUMN
}
...
...
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