ass="repository commits">

148 次代码提交 (master)

作者 SHA1 备注 提交日期
  FFIB 433f65ca20 update 21 分钟之前
  FFIB e72816d579 update 21 分钟之前
  FFIB 2b31f35fdc update requirement 49 分钟之前
  FFIB e3ed1774c7 update 51 分钟之前
  FFIB efe6980a0f update 53 分钟之前
  FFIB 29a90ba56c 增加日获取数据 55 分钟之前
  huangqimin001 ed3746379d :art: Update requirements.txt 1 小时之前
  huangqimin001 172111ce35 :art: Update pymysql.version_info 1 小时之前
  FFIB 2c8d922c08 update 3 天之前
  FFIB c037aef656 update 3 天之前
  FFIB ceaee75aed update 3 天之前
  FFIB e4aefbe446 update 3 天之前
  FFIB d507b936c2 update 3 天之前
  FFIB cc8a05152d update 3 天之前
  FFIB 1971810239 update 3 天之前
  FFIB 602fef39a4 update 3 天之前
  FFIB c9607c0be2 update 3 天之前
  FFIB 254c65a2fc update 3 天之前
  FFIB 61ef82a918 update 3 天之前
  FFIB 9acaeb980d update 3 天之前
  FFIB 617c8d129b update 3 天之前
  FFIB c6cef9ce81 update 3 天之前
  FFIB 23076ad3a7 update 3 天之前
  FFIB 041bc2ae14 update 3 天之前
  FFIB 8c9ee094e6 update 4 天之前
  FFIB c783a2d7d9 update 4 天之前
  FFIB c4476d4fd6 update 4 天之前
  FFIB 492d911356 update 4 天之前
  FFIB b619522d49 update 4 天之前
  FFIB 73bab5bc86 update 4 天之前
  FFIB ac4b34d91f update 4 天之前
  FFIB dc1c567fe6 update 4 天之前
  FFIB 0f138cfae9 update 4 天之前
  FFIB 8db9c8647c update 4 天之前
  FFIB 4f50a15777 update 4 天之前
  FFIB d4af8374e6 update 4 天之前
  FFIB 88bd813d4f update 4 天之前
  FFIB 969d716c95 update 4 天之前
  FFIB ff66702345 update 4 天之前
  FFIB a7563b9c0f update 4 天之前
  FFIB 146e449b48 update 4 天之前
  FFIB 50c5c05d61 update 4 天之前
  FFIB 9ec420f1ed update 4 天之前
  FFIB ee17ceea73 update 4 天之前
  FFIB 793494da45 update 4 天之前
  FFIB 63cc4d8386 update 4 天之前
  FFIB 34f55faaea update 4 天之前
  FFIB 89fbc1b07c update 4 天之前
  FFIB 7a840e991b update 4 天之前
  FFIB ccaa4db136 update 4 天之前
adminSystem - Gogs: Go Git Service

Sin Descripción

AMDRequireDependenciesBlock.js 1.1KB

    /* MIT License http://www.opensource.org/licenses/mit-license.php Author Tobias Koppers @sokra */ "use strict"; const AsyncDependenciesBlock = require("../AsyncDependenciesBlock"); const AMDRequireDependency = require("./AMDRequireDependency"); module.exports = class AMDRequireDependenciesBlock extends AsyncDependenciesBlock { constructor(expr, arrayRange, functionRange, errorCallbackRange, module, loc) { super(null, module, loc); this.expr = expr; this.outerRange = expr.range; this.arrayRange = arrayRange; this.functionRange = functionRange; this.errorCallbackRange = errorCallbackRange; this.bindThis = true; if(arrayRange && functionRange && errorCallbackRange) { this.range = [arrayRange[0], errorCallbackRange[1]]; } else if(arrayRange && functionRange) { this.range = [arrayRange[0], functionRange[1]]; } else if(arrayRange) { this.range = arrayRange; } else if(functionRange) { this.range = functionRange; } else { this.range = expr.range; } const dep = new AMDRequireDependency(this); dep.loc = loc; this.addDependency(dep); } };