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
Spot
Spot
Commits
ac94af57
Commit
ac94af57
authored
Aug 30, 2006
by
Alexandre Duret-Lutz
Browse files
* evtgbaparse/evtgbaparse.yy, ltlparse/ltlparse.yy,
tgbaparse/tgbaparse.yy: Fix Bison warnings about unset $$.
parent
94bf01a5
Changes
4
Hide whitespace changes
Inline
Side-by-side
ChangeLog
View file @
ac94af57
2006-08-30 Alexandre Duret-Lutz <adl@src.lip6.fr>
* evtgbaparse/evtgbaparse.yy, ltlparse/ltlparse.yy,
tgbaparse/tgbaparse.yy: Fix Bison warnings about unset $$.
* src/tgbaparse/Makefile.am (tgbaparse_HEADERS): Also
install location.hh and position.hh, since we no longer share
those of ltlvisit.
...
...
src/evtgbaparse/evtgbaparse.yy
View file @
ac94af57
/* Copyright (C) 2004, 2005 Laboratoire d'Informatique de Paris 6 (LIP6),
/* Copyright (C) 2004, 2005
, 2006
Laboratoire d'Informatique de Paris 6 (LIP6),
** dpartement Systmes Rpartis Coopratifs (SRC), Universit Pierre
** et Marie Curie.
**
...
...
@@ -85,6 +85,7 @@ line: strident ',' strident ',' strident ',' acc_list ';'
string: STRING
| UNTERMINATED_STRING
{
$$ = $1;
error_list.push_back(spot::evtgba_parse_error(@1,
"unterminated string"));
}
...
...
@@ -97,7 +98,8 @@ acc_list:
}
| acc_list strident
{
$1->insert(spot::rsymbol(*$2));
$$ = $1;
$$->insert(spot::rsymbol(*$2));
delete $2;
}
;
...
...
@@ -121,7 +123,7 @@ init_decl:
%%
void
evtgbayy::parser::error(const location_type& location,
evtgbayy::parser::error(const location_type& location,
const std::string& message)
{
error_list.push_back(spot::evtgba_parse_error(location, message));
...
...
src/ltlparse/ltlparse.yy
View file @
ac94af57
/* Copyright (C) 2003, 2004, 2005
Laboratoire d'Informatique de
Paris 6 (LIP6),
** dpartement Systmes Rpartis Coopratifs (SRC),
Universit Pierre
** et Marie Curie.
/* Copyright (C) 2003, 2004, 2005
, 2006
Laboratoire d'Informatique de
**
Paris 6 (LIP6),
dpartement Systmes Rpartis Coopratifs (SRC),
**
Universit Pierre
et Marie Curie.
**
** This file is part of Spot, a model checking library.
**
...
...
@@ -103,14 +103,14 @@ using namespace spot::ltl;
%nonassoc OP_POST_NEG OP_POST_POS
%type <ltl>
result
subformula
%type <ltl> subformula
/* At the time of writing (2004-01-05) there is a bug in CVS Bison: if
you give a token (such a ATOMIC_PROP) a name (such as "atomic
proposition"), then the %destructor should refer to that name.
References to ATOMIC_PROP are silently ignored. */
%destructor { delete $$; } "atomic proposition"
%destructor { spot::ltl::destroy($$); }
result
subformula
%destructor { spot::ltl::destroy($$); } subformula
%printer { debug_stream() << *$$; } "atomic proposition"
...
...
src/tgbaparse/tgbaparse.yy
View file @
ac94af57
...
...
@@ -152,6 +152,7 @@ line: strident ',' strident ',' condition ',' acc_list ';'
string: STRING
| UNTERMINATED_STRING
{
$$ = $1;
error_list.push_back(spot::tgba_parse_error(@1,
"unterminated string"));
}
...
...
@@ -219,7 +220,7 @@ acc_decl:
%%
void
tgbayy::parser::error(const location_type& location,
tgbayy::parser::error(const location_type& location,
const std::string& message)
{
error_list.push_back(spot::tgba_parse_error(location, message));
...
...
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