Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Why3
why3
Commits
a6ed77b7
Commit
a6ed77b7
authored
Dec 14, 2011
by
Andrei Paskevich
Browse files
accept string constants in qualified theory names in drivers
parent
6ecf1ff2
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/driver/driver_parser.mly
View file @
a6ed77b7
...
...
@@ -117,8 +117,9 @@ cloned:
;
tqualid
:
|
ident
{
loc
()
,
[
$
1
]
}
|
ident
DOT
tqualid
{
loc
()
,
(
$
1
::
snd
$
3
)
}
|
ident
{
loc
()
,
[
$
1
]
}
|
ident
DOT
tqualid
{
loc
()
,
(
$
1
::
snd
$
3
)
}
|
STRING
DOT
tqualid
{
loc
()
,
(
$
1
::
snd
$
3
)
}
;
qualid
:
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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