Sha256: a6d803a42b59321cd04954d6df117952d9e567ee3042da3f2f4ce3399208122b
Contents?: true
Size: 861 Bytes
Versions: 39
Compression:
Stored size: 861 Bytes
Contents
/*! * Stylus - stack - Scope * Copyright (c) Automattic <developer.wordpress.com> * MIT Licensed */ /** * Initialize a new `Scope`. * * @api private */ var Scope = module.exports = function Scope() { this.locals = {}; }; /** * Add `ident` node to the current scope. * * @param {Ident} ident * @api private */ Scope.prototype.add = function(ident){ this.locals[ident.name] = ident.val; }; /** * Lookup the given local variable `name`. * * @param {String} name * @return {Node} * @api private */ Scope.prototype.lookup = function(name){ return this.locals[name]; }; /** * Custom inspect. * * @return {String} * @api public */ Scope.prototype.inspect = function(){ var keys = Object.keys(this.locals).map(function(key){ return '@' + key; }); return '[Scope' + (keys.length ? ' ' + keys.join(', ') : '') + ']'; };
Version data entries
39 entries across 20 versions & 2 rubygems