Sha256: 9378061c93d7c095a6d68b9f119f815a820c53d0259de207c0fa83b8406a3490

Contents?: true

Size: 453 Bytes

Versions: 11

Compression:

Stored size: 453 Bytes

Contents

var test = require('tape');
var detect = require('../');
var fs = require('fs');
var src = fs.readFileSync(__dirname + '/files/right_hand.js');

test('globals on the right-hand of assignment', function (t) {
    t.plan(3);
    
    var scope = detect(src);
    t.same(
        scope.globals.implicit.sort(),
        [ 'exports', '__dirname', '__filename' ].sort()
    );
    t.same(scope.globals.exported, []);
    t.same(scope.locals, { '': [] });
});

Version data entries

11 entries across 11 versions & 4 rubygems

Version Path
minimum_viable_product-0.0.11 test/dummy/node_modules/lexical-scope/test/right_hand.js
brwy_rails-0.0.6 test/dummy/node_modules/lexical-scope/test/right_hand.js
brwy_rails-0.0.5 test/dummy/node_modules/lexical-scope/test/right_hand.js
brwy_rails-0.0.4 test/dummy/node_modules/lexical-scope/test/right_hand.js
brwy_rails-0.0.3 test/dummy/node_modules/lexical-scope/test/right_hand.js
brwy_rails-0.0.2 test/dummy/node_modules/lexical-scope/test/right_hand.js
brwy_rails-0.0.1 test/dummy/node_modules/lexical-scope/test/right_hand.js
sprockets-browserify-0.3.0 node_modules/browserify/node_modules/insert-module-globals/node_modules/lexical-scope/test/right_hand.js
sprockets-browserify-0.2.0 node_modules/browserify/node_modules/insert-module-globals/node_modules/lexical-scope/test/right_hand.js
ruby-wisp-source-0.8.0 vendor/node_modules/browserify/node_modules/insert-module-globals/node_modules/lexical-scope/test/right_hand.js
ruby-wisp-source-0.7.0 vendor/node_modules/browserify/node_modules/insert-module-globals/node_modules/lexical-scope/test/right_hand.js