/
githubmirror
/
brackets
Обзор
Документация
Войти
/
githubmirror
/
brackets
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
src/extensions/default/JavaScriptCodeHints/unittest-files/module-test-files/china/Cup.js
24 строки
494 B
Ingo Richter
- fix for https://github.com/adobe/brackets/issues/6931
28 фев 2014, 06:21
28 фев 2014, 06:21
b856768
Код
Авторство
О чём код?
/*jslint vars: true, plusplus: true, devel: true, browser: true, nomen: true, indent: 4, maxerr: 50 */ /*global define, $ */ define(function (require, exports, module) { "use strict"; function Cup() { this.empty = true; } Cup.prototype.fill = function () { this.empty = false; }; Cup.prototype.emptyIt = function () { }; Cup.prototype.full = function () { }; Cup.prototype.empty = function () { }; exports.Cup = Cup; });