Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
Why3
why3
Commits
43c9f637
Commit
43c9f637
authored
Jan 14, 2011
by
Andrei Paskevich
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
accept lowecase proposition names
parent
16dc0902
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
src/parser/parser.pre.mly
src/parser/parser.pre.mly
+4
-4
No files found.
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