Newton_Editor/plugins/gtksourceview/snippets/cson/speg/rules.py

15 lines
330 B
Python
Raw Normal View History

2024-03-20 00:43:27 +00:00
from six import string_types
class Eof: pass
eof = Eof()
def rule_to_str(rule):
if rule is eof:
return 'eof'
if isinstance(rule, string_types):
return repr(rule)
fn_name = rule.__name__
if fn_name.startswith('_'):
fn_name = fn_name[1:]
return '<{}>'.format(fn_name.replace('_', ' '))