mirror of
https://scm.univ-tours.fr/22107988t/rappaurio-sae501_502.git
synced 2025-08-29 19:35:57 +02:00
permet l'ajout des frameworks et des routes
This commit is contained in:
53
app/node_modules/hyntax/lib/tokenizer-context-handlers/attribute-value-wrapped.js
generated
vendored
Normal file
53
app/node_modules/hyntax/lib/tokenizer-context-handlers/attribute-value-wrapped.js
generated
vendored
Normal file
@@ -0,0 +1,53 @@
|
||||
const { calculateTokenCharactersRange } = require('../helpers')
|
||||
|
||||
const {
|
||||
TOKEN_ATTRIBUTE_VALUE,
|
||||
TOKEN_ATTRIBUTE_VALUE_WRAPPER_END
|
||||
} = require('../constants/token-types')
|
||||
const {
|
||||
ATTRIBUTES_CONTEXT,
|
||||
ATTRIBUTE_VALUE_WRAPPED_CONTEXT
|
||||
} = require('../constants/tokenizer-contexts')
|
||||
|
||||
function wrapper (state, tokens) {
|
||||
const range = calculateTokenCharactersRange(state, { keepBuffer: false })
|
||||
const endWrapperPosition = range.endPosition + 1
|
||||
|
||||
tokens.push(
|
||||
{
|
||||
type: TOKEN_ATTRIBUTE_VALUE,
|
||||
content: state.accumulatedContent,
|
||||
startPosition: range.startPosition,
|
||||
endPosition: range.endPosition
|
||||
},
|
||||
{
|
||||
type: TOKEN_ATTRIBUTE_VALUE_WRAPPER_END,
|
||||
content: state.decisionBuffer,
|
||||
startPosition: endWrapperPosition,
|
||||
endPosition: endWrapperPosition
|
||||
}
|
||||
)
|
||||
|
||||
state.accumulatedContent = ''
|
||||
state.decisionBuffer = ''
|
||||
state.currentContext = ATTRIBUTES_CONTEXT
|
||||
state.caretPosition++
|
||||
|
||||
state.contextParams[ATTRIBUTE_VALUE_WRAPPED_CONTEXT] = undefined
|
||||
}
|
||||
|
||||
function parseSyntax (chars, state, tokens) {
|
||||
const wrapperChar = state.contextParams[ATTRIBUTE_VALUE_WRAPPED_CONTEXT].wrapper
|
||||
|
||||
if (chars === wrapperChar) {
|
||||
return wrapper(state, tokens)
|
||||
}
|
||||
|
||||
state.accumulatedContent += state.decisionBuffer
|
||||
state.decisionBuffer = ''
|
||||
state.caretPosition++
|
||||
}
|
||||
|
||||
module.exports = {
|
||||
parseSyntax
|
||||
}
|
Reference in New Issue
Block a user