tor-browser

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

classes.js (4130B)


      1 var webpack3Babel6Classes =
      2 /******/ (function(modules) { // webpackBootstrap
      3 /******/ 	// The module cache
      4 /******/ 	var installedModules = {};
      5 /******/
      6 /******/ 	// The require function
      7 /******/ 	function __webpack_require__(moduleId) {
      8 /******/
      9 /******/ 		// Check if module is in cache
     10 /******/ 		if(installedModules[moduleId]) {
     11 /******/ 			return installedModules[moduleId].exports;
     12 /******/ 		}
     13 /******/ 		// Create a new module (and put it into the cache)
     14 /******/ 		var module = installedModules[moduleId] = {
     15 /******/ 			i: moduleId,
     16 /******/ 			l: false,
     17 /******/ 			exports: {}
     18 /******/ 		};
     19 /******/
     20 /******/ 		// Execute the module function
     21 /******/ 		modules[moduleId].call(module.exports, module, module.exports, __webpack_require__);
     22 /******/
     23 /******/ 		// Flag the module as loaded
     24 /******/ 		module.l = true;
     25 /******/
     26 /******/ 		// Return the exports of the module
     27 /******/ 		return module.exports;
     28 /******/ 	}
     29 /******/
     30 /******/
     31 /******/ 	// expose the modules object (__webpack_modules__)
     32 /******/ 	__webpack_require__.m = modules;
     33 /******/
     34 /******/ 	// expose the module cache
     35 /******/ 	__webpack_require__.c = installedModules;
     36 /******/
     37 /******/ 	// define getter function for harmony exports
     38 /******/ 	__webpack_require__.d = function(exports, name, getter) {
     39 /******/ 		if(!__webpack_require__.o(exports, name)) {
     40 /******/ 			Object.defineProperty(exports, name, {
     41 /******/ 				configurable: false,
     42 /******/ 				enumerable: true,
     43 /******/ 				get: getter
     44 /******/ 			});
     45 /******/ 		}
     46 /******/ 	};
     47 /******/
     48 /******/ 	// getDefaultExport function for compatibility with non-harmony modules
     49 /******/ 	__webpack_require__.n = function(module) {
     50 /******/ 		var getter = module && module.__esModule ?
     51 /******/ 			function getDefault() { return module['default']; } :
     52 /******/ 			function getModuleExports() { return module; };
     53 /******/ 		__webpack_require__.d(getter, 'a', getter);
     54 /******/ 		return getter;
     55 /******/ 	};
     56 /******/
     57 /******/ 	// Object.prototype.hasOwnProperty.call
     58 /******/ 	__webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); };
     59 /******/
     60 /******/ 	// __webpack_public_path__
     61 /******/ 	__webpack_require__.p = "";
     62 /******/
     63 /******/ 	// Load entry module and return exports
     64 /******/ 	return __webpack_require__(__webpack_require__.s = 0);
     65 /******/ })
     66 /************************************************************************/
     67 /******/ ([
     68 /* 0 */
     69 /***/ (function(module, __webpack_exports__, __webpack_require__) {
     70 
     71 "use strict";
     72 Object.defineProperty(__webpack_exports__, "__esModule", { value: true });
     73 /* harmony export (immutable) */ __webpack_exports__["default"] = root;
     74 var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();
     75 
     76 function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
     77 
     78 function root() {
     79  var one = 1;
     80 
     81  var Thing = function () {
     82    function Thing() {
     83      _classCallCheck(this, Thing);
     84    }
     85 
     86    _createClass(Thing, [{
     87      key: "one",
     88      value: function one() {
     89        console.log("pause here");
     90      }
     91    }]);
     92 
     93    return Thing;
     94  }();
     95 
     96  var Another = function () {
     97    function Another() {
     98      _classCallCheck(this, Another);
     99    }
    100 
    101    _createClass(Another, [{
    102      key: "method",
    103      value: function method() {
    104        var two = 2;
    105 
    106        var three = 3;
    107 
    108        console.log("pause here", Another, one, Thing, root);
    109      }
    110    }]);
    111 
    112    return Another;
    113  }();
    114 
    115  new Another().method();
    116  new Thing().one();
    117 }
    118 
    119 /***/ })
    120 /******/ ])["default"];
    121 //# sourceMappingURL=classes.js.map