diff options
author | bscan <10503608+bscan@users.noreply.github.com> | 2024-09-09 20:47:10 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-09 20:47:10 -0400 |
commit | de1344a97c883698d5630b01d8299a17a9d95148 (patch) | |
tree | 68fb9dac1e93c2c7844867669be357fcb3bf338f | |
parent | a02f86e1b18f619041ebcd5d4f7d4aaa6c8fa535 (diff) | |
parent | 5b3bc26c3bcedc9b42200798181f49dd83566588 (diff) | |
download | PerlNavigator-de1344a97c883698d5630b01d8299a17a9d95148.zip |
improves field handling when inherited attrs are changed
-rw-r--r-- | browser-ext/src/web-parse.ts | 2 | ||||
-rw-r--r-- | server/src/parser.ts | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/browser-ext/src/web-parse.ts b/browser-ext/src/web-parse.ts index f5db7b6..4c0e80f 100644 --- a/browser-ext/src/web-parse.ts +++ b/browser-ext/src/web-parse.ts @@ -253,7 +253,7 @@ function fields(state: ParserState) : boolean { let match; // Moo/Moose/Object::Pad/Moops/Corinna attributes - if ((match = state.stmt.match(/^(?:has|field)(?:\s+|\()["']?([\$@%]?\w+)\b/))) { + if ((match = state.stmt.match(/^(?:has|field)(?:\s+|\()["']?\+?([\$@%]?\w+)\b/))) { const attr = match[1]; let type; if(attr.match(/^\w/)){ diff --git a/server/src/parser.ts b/server/src/parser.ts index 951c8ee..dc52475 100644 --- a/server/src/parser.ts +++ b/server/src/parser.ts @@ -301,7 +301,7 @@ function constants(state: ParserState): boolean { function fields(state: ParserState): boolean { let match; // Moo/Moose/Object::Pad/Moops/Corinna attributes - if ((match = state.stmt.match(/^(?:has|field)(?:\s+|\()["']?([\$@%]?\w+)\b/))) { + if ((match = state.stmt.match(/^(?:has|field)(?:\s+|\()["']?\+?([\$@%]?\w+)\b/))) { const attr = match[1]; let type; if (attr.match(/^\w/)) { |