Skip to content
Snippets Groups Projects
Unverified Commit 4501d391 authored by Thorsten Hater's avatar Thorsten Hater Committed by GitHub
Browse files

modcc: Allow redundant, but correct READ declaration. (#1936)

parent e0710c36
No related branches found
No related tags found
No related merge requests found
......@@ -723,11 +723,8 @@ void Module::add_variables_to_symbols() {
}
std::set<std::string> cond;
for(auto const& ion : neuron_block_.ions) {
for(auto const& var : ion.read) {
update_ion_symbols(var, accessKind::read, ion.name);
}
for(auto const& var : ion.write) {
for(auto const& ion: neuron_block_.ions) {
for(auto const& var: ion.write) {
update_ion_symbols(var, accessKind::write, ion.name);
auto name = "conductivity_" + ion.name + "_";
if (cond.find(name) == cond.end()) {
......@@ -736,6 +733,16 @@ void Module::add_variables_to_symbols() {
}
}
for(auto const& var: ion.read) {
// Skip vars we have already processed as WRITE, since those can be read as well.
if (std::count_if(ion.write.begin(),
ion.write.end(),
[&var](const auto& it) { return var.spelling == it.spelling; })) {
continue;
}
update_ion_symbols(var, accessKind::read, ion.name);
}
if(ion.uses_valence()) {
Token valence_var = ion.valence_var;
create_indexed_variable(valence_var.spelling, sourceKind::ion_valence,
......
NEURON {
SUFFIX hh
USEION na READ ena, ina WRITE ina
}
BREAKPOINT { ina = 5*(v - ena) }
INITIAL {}
......@@ -113,3 +113,12 @@ TEST(Module, breakpoint) {
EXPECT_TRUE(m.semantic());
}
TEST(Module, read_write_ion) {
Module m(io::read_all(DATADIR "/mod_files/test-rw-ion.mod"), "test-rw-ion.mod");
EXPECT_NE(m.buffer().size(), 0);
Parser p(m, false);
EXPECT_TRUE(p.parse());
EXPECT_TRUE(m.semantic());
}
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment