stylus
Version:
Robust, expressive, and feature-rich CSS superset
68 lines (56 loc) • 1.05 kB
JavaScript
/*!
* Stylus - stack - Frame
* Copyright (c) Automattic <developer.wordpress.com>
* MIT Licensed
*/
/**
* Module dependencies.
*/
var Scope = require('./scope');
module.exports = class Frame {
/**
* Initialize a new `Frame` with the given `block`.
*
* @param {Block} block
* @api private
*/
constructor(block) {
this._scope = false === block.scope
? null
: new Scope;
this.block = block;
}
/**
* Return this frame's scope or the parent scope
* for scope-less blocks.
*
* @return {Scope}
* @api public
*/
get scope() {
return this._scope || this.parent.scope;
};
/**
* Lookup the given local variable `name`.
*
* @param {String} name
* @return {Node}
* @api private
*/
lookup(name) {
return this.scope.lookup(name)
};
/**
* Custom inspect.
*
* @return {String}
* @api public
*/
inspect() {
return '[Frame '
+ (false === this.block.scope
? 'scope-less'
: this.scope.inspect())
+ ']';
};
};