Skip to content

Commit

Permalink
No commit message
Browse files Browse the repository at this point in the history
  • Loading branch information
breck7 committed Nov 19, 2024
1 parent a48d2ce commit 64f74cb
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 4 deletions.
16 changes: 14 additions & 2 deletions products/parsers.browser.js
Original file line number Diff line number Diff line change
Expand Up @@ -288,11 +288,12 @@ parsersAtomsParser
parsersCompilerParser
// todo Remove this and its subparticles?
description For simple compilers.
description Deprecated. For simple compilers.
inScope stringTemplateParser catchAllAtomDelimiterParser openSubparticlesParser closeSubparticlesParser indentCharacterParser joinSubparticlesWithParser
extends abstractParserRuleParser
cue compiler
tags experimental
tags deprecate
boolean suggestInAutocomplete false
parserDescriptionParser
description Parser description.
Expand Down Expand Up @@ -433,6 +434,7 @@ contentKeyParser
cueFromId
catchAllAtomType stringAtom
tags deprecate
boolean suggestInAutocomplete false
subparticlesKeyParser
// todo: deprecate?
description Deprecated. For to/from JSON.
Expand All @@ -441,6 +443,7 @@ subparticlesKeyParser
cueFromId
catchAllAtomType stringAtom
tags deprecate
boolean suggestInAutocomplete false
parsersTagsParser
catchAllAtomType stringAtom
Expand Down Expand Up @@ -727,6 +730,9 @@ extendsAtomTypeParser
undefined
)
}
get suggestInAutocomplete() {
return false
}
}

class parserDescriptionParser extends abstractParserRuleParser {
Expand Down Expand Up @@ -841,12 +847,18 @@ extendsAtomTypeParser
get stringAtom() {
return this.getAtomsFrom(0)
}
get suggestInAutocomplete() {
return false
}
}

class subparticlesKeyParser extends abstractParserRuleParser {
get stringAtom() {
return this.getAtomsFrom(0)
}
get suggestInAutocomplete() {
return false
}
}

class parsersTagsParser extends abstractParserRuleParser {
Expand Down
16 changes: 14 additions & 2 deletions products/parsers.nodejs.js
Original file line number Diff line number Diff line change
Expand Up @@ -294,11 +294,12 @@ parsersAtomsParser
parsersCompilerParser
// todo Remove this and its subparticles?
description For simple compilers.
description Deprecated. For simple compilers.
inScope stringTemplateParser catchAllAtomDelimiterParser openSubparticlesParser closeSubparticlesParser indentCharacterParser joinSubparticlesWithParser
extends abstractParserRuleParser
cue compiler
tags experimental
tags deprecate
boolean suggestInAutocomplete false
parserDescriptionParser
description Parser description.
Expand Down Expand Up @@ -439,6 +440,7 @@ contentKeyParser
cueFromId
catchAllAtomType stringAtom
tags deprecate
boolean suggestInAutocomplete false
subparticlesKeyParser
// todo: deprecate?
description Deprecated. For to/from JSON.
Expand All @@ -447,6 +449,7 @@ subparticlesKeyParser
cueFromId
catchAllAtomType stringAtom
tags deprecate
boolean suggestInAutocomplete false
parsersTagsParser
catchAllAtomType stringAtom
Expand Down Expand Up @@ -733,6 +736,9 @@ extendsAtomTypeParser
undefined
)
}
get suggestInAutocomplete() {
return false
}
}

class parserDescriptionParser extends abstractParserRuleParser {
Expand Down Expand Up @@ -847,12 +853,18 @@ extendsAtomTypeParser
get stringAtom() {
return this.getAtomsFrom(0)
}
get suggestInAutocomplete() {
return false
}
}

class subparticlesKeyParser extends abstractParserRuleParser {
get stringAtom() {
return this.getAtomsFrom(0)
}
get suggestInAutocomplete() {
return false
}
}

class parsersTagsParser extends abstractParserRuleParser {
Expand Down

0 comments on commit 64f74cb

Please sign in to comment.