Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Why3
why3
Commits
43c9f637
Commit
43c9f637
authored
Jan 14, 2011
by
Andrei Paskevich
Browse files
accept lowecase proposition names
parent
16dc0902
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/parser/parser.pre.mly
View file @
43c9f637
...
...
@@ -286,11 +286,11 @@ decl:
{
LogicDecl
$
2
}
|
INDUCTIVE
list1_inductive_decl
{
IndDecl
$
2
}
|
AXIOM
u
ident
labels
COLON
lexpr
|
AXIOM
ident
labels
COLON
lexpr
{
PropDecl
(
loc
()
,
Kaxiom
,
add_lab
$
2
$
3
,
$
5
)
}
|
LEMMA
u
ident
labels
COLON
lexpr
|
LEMMA
ident
labels
COLON
lexpr
{
PropDecl
(
loc
()
,
Klemma
,
add_lab
$
2
$
3
,
$
5
)
}
|
GOAL
u
ident
labels
COLON
lexpr
|
GOAL
ident
labels
COLON
lexpr
{
PropDecl
(
loc
()
,
Kgoal
,
add_lab
$
2
$
3
,
$
5
)
}
|
USE
use
{
UseClone
(
loc
()
,
$
2
,
None
)
}
...
...
@@ -438,7 +438,7 @@ indcases:
;
indcase
:
|
u
ident
labels
COLON
lexpr
{
(
loc
()
,
add_lab
$
1
$
2
,
$
4
)
}
|
ident
labels
COLON
lexpr
{
(
loc
()
,
add_lab
$
1
$
2
,
$
4
)
}
;
/*
Type
expressions
*/
...
...
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