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