Parser actually adds interface behavior to interface

This commit is contained in:
Sasha Koshka 2022-08-24 00:52:37 -04:00
parent 39f8d7e4ac
commit 08935d69c0
1 changed files with 3 additions and 2 deletions

View File

@ -60,6 +60,7 @@ func (parser *ParsingOperation) parseFaceSection () (
infoerr.ErrorKindError) infoerr.ErrorKindError)
return return
} }
section.behaviors[behavior.name] = behavior
if err != nil { return } if err != nil { return }
} }
@ -121,8 +122,8 @@ func (parser *ParsingOperation) parseFaceBehavior () (
behavior.inputs, behavior.inputs,
declaration) declaration)
} else { } else {
behavior.inputs = append ( behavior.outputs = append (
behavior.inputs, behavior.outputs,
declaration) declaration)
} }
} }