mirror of
https://github.com/barsdeveloper/ueblueprint.git
synced 2026-05-14 07:47:29 +08:00
Fix links on pasted nodes
This commit is contained in:
@@ -149,7 +149,7 @@ export default class Grammar {
|
||||
|
||||
Identifier = r => P.regex(/\w+/).map(v => new IdentifierEntity(v))
|
||||
|
||||
PathSymbol = r => P.regex(/[0-9a-zA-Z_]+/).map(v => new PathSymbolEntity({ value: v }))
|
||||
PathSymbol = r => P.regex(/[0-9\w]+/).map(v => new PathSymbolEntity({ value: v }))
|
||||
|
||||
Reference = r => P.alt(
|
||||
r.None,
|
||||
|
||||
Reference in New Issue
Block a user