mirror of
https://scm.univ-tours.fr/22107988t/rappaurio-sae501_502.git
synced 2025-08-30 18:45:59 +02:00
Revert "permet l'ajout des frameworks et des routes"
This reverts commit 361112699c
This commit is contained in:
58
app/node_modules/hyntax/lib/tokenizer-context-handlers/comment-content.js
generated
vendored
58
app/node_modules/hyntax/lib/tokenizer-context-handlers/comment-content.js
generated
vendored
@@ -1,58 +0,0 @@
|
||||
const { calculateTokenCharactersRange } = require('../helpers')
|
||||
|
||||
const {
|
||||
TOKEN_COMMENT_END,
|
||||
TOKEN_COMMENT_CONTENT
|
||||
} = require('../constants/token-types')
|
||||
const {
|
||||
DATA_CONTEXT
|
||||
} = require('../constants/tokenizer-contexts')
|
||||
|
||||
const COMMENT_END = '-->'
|
||||
|
||||
function commentEnd (state, tokens) {
|
||||
const contentRange = calculateTokenCharactersRange(state, { keepBuffer: false })
|
||||
const commentEndRange = {
|
||||
startPosition: contentRange.endPosition + 1,
|
||||
endPosition: contentRange.endPosition + COMMENT_END.length,
|
||||
}
|
||||
|
||||
tokens.push({
|
||||
type: TOKEN_COMMENT_CONTENT,
|
||||
content: state.accumulatedContent,
|
||||
startPosition: contentRange.startPosition,
|
||||
endPosition: contentRange.endPosition
|
||||
})
|
||||
|
||||
tokens.push({
|
||||
type: TOKEN_COMMENT_END,
|
||||
content: state.decisionBuffer,
|
||||
startPosition: commentEndRange.startPosition,
|
||||
endPosition: commentEndRange.endPosition
|
||||
})
|
||||
|
||||
state.accumulatedContent = ''
|
||||
state.decisionBuffer = ''
|
||||
state.currentContext = DATA_CONTEXT
|
||||
state.caretPosition++
|
||||
}
|
||||
|
||||
function parseSyntax (chars, state, tokens) {
|
||||
if (chars === '-' || chars === '--') {
|
||||
state.caretPosition++
|
||||
|
||||
return
|
||||
}
|
||||
|
||||
if (chars === COMMENT_END) {
|
||||
return commentEnd(state, tokens)
|
||||
}
|
||||
|
||||
state.accumulatedContent += state.decisionBuffer
|
||||
state.decisionBuffer = ''
|
||||
state.caretPosition++
|
||||
}
|
||||
|
||||
module.exports = {
|
||||
parseSyntax
|
||||
}
|
Reference in New Issue
Block a user