Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions LexLib/Emit.cs
Original file line number Diff line number Diff line change
Expand Up @@ -836,7 +836,7 @@ void Driver()
AcceptMethod m = accept_dispatch[yy_last_accept_state];
if (m != null)
{{
Yytoken tmp = m(); // spec.type_name
{4} tmp = m(); // spec.type_name
if (tmp != null)
return tmp;
}}
Expand All @@ -856,8 +856,9 @@ void Driver()
}}
}}
}}
}}
#endregion
", getDriverType(), spec.function_name, EOF_Test(), spec.accept_list.Count);
", getDriverType(), spec.function_name, EOF_Test(), spec.accept_list.Count, spec.type_name);

outstream.Write(sb);
}
Expand Down