tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

test-autocomplete-mapped.src.js (347B)


      1 "use strict";
      2 import { imported } from "somewhere";
      3 import { getter } from "somewhere-else";
      4 
      5 const blackbox = x => [x].pop();
      6 
      7 function firstCall() {
      8  const value = 42;
      9  const temp = imported;
     10  const temp2 = getter;
     11  const localWithGetter = {
     12    get value() { return blackbox(Promise.resolve()); }
     13  };
     14  const unmapped = 100;
     15  debugger;
     16 }