Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
簡単な文法は次のとおりです。
filling = fill? align fill = . align = [<>=^]
また、次のように一致する必要があります。
< 0< <<
ただし、PEG.js はバックトラックを許可せず、単純に文字fillを消費します。<
fill
<
< (does not work) 0< (works) << (works)
文法を機能させるにはどのように変更すればよいですか?