dict.js 241 B

123456
  1. module.exports = {
  2. identifier: "[a-zA-Z_]+[a-zA-Z0-9_]*",
  3. integer: "-?(?:0|[1-9][0-9]*)",
  4. qq_string: "\"(?:\\\\[\"bfnrt/\\\\]|\\\\u[a-fA-F0-9]{4}|[^\"\\\\])*\"",
  5. q_string: "'(?:\\\\[\'bfnrt/\\\\]|\\\\u[a-fA-F0-9]{4}|[^\'\\\\])*'"
  6. };