add Path#isStatic

This commit is contained in:
Sebastian McKenzie 2015-09-01 04:59:52 +01:00
parent 1d31db29a5
commit 1895ee02b5

View File

@ -76,6 +76,14 @@ export function has(key): boolean {
}
}
/**
* Description
*/
export function isStatic() {
return this.scope.isStatic(this.node);
}
/**
* Alias of `has`.
*/