Skip to content

Commit

Permalink
Add missing ;
Browse files Browse the repository at this point in the history
  • Loading branch information
christoph2 committed Dec 27, 2018
1 parent b65423f commit 9e1e8fb
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
1 change: 1 addition & 0 deletions pydbc/ldf.g4
Original file line number Diff line number Diff line change
Expand Up @@ -148,6 +148,7 @@ node_attribute:
('initial_NAD' '=' n1 = diag_address ';')?
attrs = attributes_def ';'
'}'
;

protocol_version:
s = stringValue
Expand Down
8 changes: 4 additions & 4 deletions pydbc/ldfListener.py
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ def exitConfigurable_frames_20_def(self, ctx):
pass

def exitMessage_id(self, ctx):
pass
ctx.value = ctx.i.value

def exitConfigurable_frames_21_def(self, ctx):
pass
Expand All @@ -110,13 +110,13 @@ def exitNode_composition_def(self, ctx):
pass

def exitConfiguration_name(self, ctx):
pass
ctx.value = ctx.i.value

def exitComposite_node(self, ctx):
pass
ctx.value = ctx.i.value

def exitLogical_node(self, ctx):
pass
ctx.value = ctx.i.value

def exitSignal_def(self, ctx):
#(sname = signal_name ':' ssize = signal_size ',' initValue = init_value ',' pub = published_by (',' sub += subscribed_by)* ';')*
Expand Down

0 comments on commit 9e1e8fb

Please sign in to comment.