mirror of
https://github.com/Tria-plc/emaui.git
synced 2026-08-27 15:30:57 +00:00
18 lines
433 B
JavaScript
18 lines
433 B
JavaScript
resolution =
|
|
from:specifier "/" descriptor:specifier { return { from, descriptor } }
|
|
/ descriptor:specifier { return { descriptor } }
|
|
|
|
specifier =
|
|
fullName:fullName "@" description:description { return { fullName, description } }
|
|
/ fullName:fullName { return { fullName } }
|
|
|
|
fullName =
|
|
"@" ident "/" ident { return text() }
|
|
/ ident { return text() }
|
|
|
|
ident =
|
|
[^/@]+ { return text() }
|
|
|
|
description =
|
|
[^/]+ { return text() }
|