详细说明: - 添加了V2版本的工作流页面和结果页面 - 更新了Serena记忆文件 - 添加了详细实施计划文档 - 优化了Vite配置 - 更新了项目文档CLAUDE.md - 构建了演示系统的dist版本 - 包含了exhibition-demo的完整依赖
24 lines
628 B
JavaScript
24 lines
628 B
JavaScript
'use strict'
|
|
var refractorPhp = require('./php.js')
|
|
module.exports = phpExtras
|
|
phpExtras.displayName = 'phpExtras'
|
|
phpExtras.aliases = []
|
|
function phpExtras(Prism) {
|
|
Prism.register(refractorPhp)
|
|
Prism.languages.insertBefore('php', 'variable', {
|
|
this: {
|
|
pattern: /\$this\b/,
|
|
alias: 'keyword'
|
|
},
|
|
global:
|
|
/\$(?:GLOBALS|HTTP_RAW_POST_DATA|_(?:COOKIE|ENV|FILES|GET|POST|REQUEST|SERVER|SESSION)|argc|argv|http_response_header|php_errormsg)\b/,
|
|
scope: {
|
|
pattern: /\b[\w\\]+::/,
|
|
inside: {
|
|
keyword: /\b(?:parent|self|static)\b/,
|
|
punctuation: /::|\\/
|
|
}
|
|
}
|
|
})
|
|
}
|