Files
codeql/javascript/ql/test/tutorials/Validating RAML-based APIs/query1.ql
2018-08-02 17:53:23 +01:00

12 lines
198 B
Plaintext

import javascript
/** A RAML specification. */
class RAMLSpec extends YAMLDocument, YAMLMapping {
RAMLSpec() {
getLocation().getFile().getExtension() = "raml"
}
}
from RAMLSpec s
select s