mirror of
https://github.com/github/codeql.git
synced 2025-12-17 09:13:20 +01:00
10 lines
197 B
Plaintext
10 lines
197 B
Plaintext
import javascript
|
|
|
|
/** A RAML specification. */
|
|
class RamlSpec extends YamlDocument, YamlMapping {
|
|
RamlSpec() { this.getLocation().getFile().getExtension() = "raml" }
|
|
}
|
|
|
|
from RamlSpec s
|
|
select s
|