- 以 "/" 开头的为绝对路径,相对整个 json 元数据,否则为相对路径,以当前校验的字段为基准
- "0": 当前 pointer 的 value
- "0#": 当前 pointer 的 key
- "1": 上一级 pointer 的 value
- "1#": 上一级 pointer 的 key
- "2": 上两级 pointer 的 value
- "2#": 上两级 pointer 的 key
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sonar.projectKey=<PROJECT_KEY> | |
sonar.projectName=<PROJECT_NAME> | |
sonar.projectVersion=<PROJECT_VERSION> | |
sonar.sourceEncoding=UTF-8 | |
sonar.host.url=<SONAR_URL_HOST> | |
sonar.login=<TOKEN> | |
sonar.language=javascript | |
sonar.sources=src |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
var SQL = { | |
listToString: function(x, xs) { | |
return [x].concat(xs).join(""); | |
} | |
}; | |
} | |
Start | |
= Stmt |