face-section #7

Merged
sashakoshka merged 12 commits from face-section into main 2022-08-24 04:57:15 +00:00
1 changed files with 3 additions and 2 deletions
Showing only changes of commit 08935d69c0 - Show all commits

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)
} }
} }