Skip to content

Commit

Permalink
Add support for m.from
Browse files Browse the repository at this point in the history
  • Loading branch information
5nord committed Jan 25, 2024
1 parent d7d7e89 commit 0c60cf0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ttcn3/syntax/parser.go
Original file line number Diff line number Diff line change
Expand Up @@ -1011,7 +1011,7 @@ func (p *parser) parseIdent() *Ident {
switch p.tok {
case UNIVERSAL:
return p.parseUniversalCharstring()
case IDENT, ADDRESS, ALIVE, CHARSTRING, CONTROL, TO:
case IDENT, ADDRESS, ALIVE, CHARSTRING, CONTROL, TO, FROM:
return p.make_use(p.consume())
default:
p.expect(IDENT) // use expect() error handling
Expand Down

0 comments on commit 0c60cf0

Please sign in to comment.