Some checks failed
Main Confidence / confidence (push) Failing after 45s
## Summary - introduce surface-aware compressed governance outcomes and reuse the shared truth/explanation seams for operator-first summaries - apply the compressed outcome hierarchy across baseline, evidence, review, review-pack, canonical review/evidence, and artifact-oriented operation-run surfaces - expand spec 214 fixtures and Pest coverage, and fix tenant-panel route assertions by generating explicit tenant-panel URLs in the affected Filament tests ## Validation - `cd apps/platform && ./vendor/bin/sail bin pint --dirty --format agent` - focused governance compression suite from `specs/214-governance-outcome-compression/quickstart.md` passed (`68` tests, `445` assertions) - `cd apps/platform && ./vendor/bin/sail artisan test --compact tests/Feature/Filament/InventoryItemResourceTest.php tests/Feature/Filament/BackupSetUiEnforcementTest.php tests/Feature/Filament/RestoreRunUiEnforcementTest.php` passed (`18` tests, `81` assertions) Co-authored-by: Ahmed Darrazi <ahmed.darrazi@live.de> Reviewed-on: #253
98 lines
2.3 KiB
Plaintext
98 lines
2.3 KiB
Plaintext
'use strict'
|
|
|
|
exports.parse = function (source, transform) {
|
|
return new ArrayParser(source, transform).parse()
|
|
}
|
|
|
|
class ArrayParser {
|
|
constructor (source, transform) {
|
|
this.source = source
|
|
this.transform = transform || identity
|
|
this.position = 0
|
|
this.entries = []
|
|
this.recorded = []
|
|
this.dimension = 0
|
|
}
|
|
|
|
isEof () {
|
|
return this.position >= this.source.length
|
|
}
|
|
|
|
nextCharacter () {
|
|
var character = this.source[this.position++]
|
|
if (character === '\\') {
|
|
return {
|
|
value: this.source[this.position++],
|
|
escaped: true
|
|
}
|
|
}
|
|
return {
|
|
value: character,
|
|
escaped: false
|
|
}
|
|
}
|
|
|
|
record (character) {
|
|
this.recorded.push(character)
|
|
}
|
|
|
|
newEntry (includeEmpty) {
|
|
var entry
|
|
if (this.recorded.length > 0 || includeEmpty) {
|
|
entry = this.recorded.join('')
|
|
if (entry === 'NULL' && !includeEmpty) {
|
|
entry = null
|
|
}
|
|
if (entry !== null) entry = this.transform(entry)
|
|
this.entries.push(entry)
|
|
this.recorded = []
|
|
}
|
|
}
|
|
|
|
consumeDimensions () {
|
|
if (this.source[0] === '[') {
|
|
while (!this.isEof()) {
|
|
var char = this.nextCharacter()
|
|
if (char.value === '=') break
|
|
}
|
|
}
|
|
}
|
|
|
|
parse (nested) {
|
|
var character, parser, quote
|
|
this.consumeDimensions()
|
|
while (!this.isEof()) {
|
|
character = this.nextCharacter()
|
|
if (character.value === '{' && !quote) {
|
|
this.dimension++
|
|
if (this.dimension > 1) {
|
|
parser = new ArrayParser(this.source.substr(this.position - 1), this.transform)
|
|
this.entries.push(parser.parse(true))
|
|
this.position += parser.position - 2
|
|
}
|
|
} else if (character.value === '}' && !quote) {
|
|
this.dimension--
|
|
if (!this.dimension) {
|
|
this.newEntry()
|
|
if (nested) return this.entries
|
|
}
|
|
} else if (character.value === '"' && !character.escaped) {
|
|
if (quote) this.newEntry(true)
|
|
quote = !quote
|
|
} else if (character.value === ',' && !quote) {
|
|
this.newEntry()
|
|
} else {
|
|
this.record(character.value)
|
|
}
|
|
}
|
|
if (this.dimension !== 0) {
|
|
throw new Error('array dimension not balanced')
|
|
}
|
|
return this.entries
|
|
}
|
|
}
|
|
|
|
function identity (value) {
|
|
return value
|
|
}
|