1
0
Fork 0

[no-copyright] Modified headers to reduce GPL license notice width

perfodd
Mike Gerwitz 2014-01-15 23:56:00 -05:00
parent 5fa379e662
commit 97fbbd5bb9
91 changed files with 920 additions and 1108 deletions

View File

@ -5,20 +5,18 @@
* *
* This file is part of GNU ease.js. * This file is part of GNU ease.js.
* *
* ease.js is free software: you can redistribute it and/or modify it under the * ease.js is free software: you can redistribute it and/or modify
* terms of the GNU General Public License as published by the Free Software * it under the terms of the GNU General Public License as published by
* Foundation, either version 3 of the License, or (at your option) any later * the Free Software Foundation, either version 3 of the License, or
* version. * (at your option) any later version.
* *
* This program is distributed in the hope that it will be useful, but WITHOUT * This program is distributed in the hope that it will be useful,
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * but WITHOUT ANY WARRANTY; without even the implied warranty of
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* more details. * GNU General Public License for more details.
* *
* You should have received a copy of the GNU General Public License along with * You should have received a copy of the GNU General Public License
* this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
*
* @author Mike Gerwitz
*/ */
exports.Class = require( __dirname + '/lib/class' ); exports.Class = require( __dirname + '/lib/class' );

View File

@ -5,25 +5,23 @@
* *
* This file is part of GNU ease.js. * This file is part of GNU ease.js.
* *
* ease.js is free software: you can redistribute it and/or modify it under the * ease.js is free software: you can redistribute it and/or modify
* terms of the GNU General Public License as published by the Free Software * it under the terms of the GNU General Public License as published by
* Foundation, either version 3 of the License, or (at your option) any later * the Free Software Foundation, either version 3 of the License, or
* version. * (at your option) any later version.
* *
* This program is distributed in the hope that it will be useful, but WITHOUT * This program is distributed in the hope that it will be useful,
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * but WITHOUT ANY WARRANTY; without even the implied warranty of
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* more details. * GNU General Public License for more details.
* *
* You should have received a copy of the GNU General Public License along with * You should have received a copy of the GNU General Public License
* this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
* *
* @author Mike Gerwitz * TODO: This module is currently being tested /indirectly/ by the class
* * tests. This is because of a refactoring. All of this logic used to
* TODO: This module is currently being tested /indirectly/ by the class tests. * be part of the class module. Test this module directly, but keep
* This is because of a refactoring. All of this logic used to be part of * the existing class tests in tact for a higher-level test.
* the class module. Test this module directly, but keep the existing
* class tests in tact for a higher-level test.
*/ */
var util = require( __dirname + '/util' ), var util = require( __dirname + '/util' ),

View File

@ -5,20 +5,18 @@
* *
* This file is part of GNU ease.js. * This file is part of GNU ease.js.
* *
* ease.js is free software: you can redistribute it and/or modify it under the * ease.js is free software: you can redistribute it and/or modify
* terms of the GNU General Public License as published by the Free Software * it under the terms of the GNU General Public License as published by
* Foundation, either version 3 of the License, or (at your option) any later * the Free Software Foundation, either version 3 of the License, or
* version. * (at your option) any later version.
* *
* This program is distributed in the hope that it will be useful, but WITHOUT * This program is distributed in the hope that it will be useful,
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * but WITHOUT ANY WARRANTY; without even the implied warranty of
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* more details. * GNU General Public License for more details.
* *
* You should have received a copy of the GNU General Public License along with * You should have received a copy of the GNU General Public License
* this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
*
* @author Mike Gerwitz
*/ */
/** /**

View File

@ -5,23 +5,20 @@
* *
* This file is part of GNU ease.js. * This file is part of GNU ease.js.
* *
* ease.js is free software: you can redistribute it and/or modify it under the * ease.js is free software: you can redistribute it and/or modify
* terms of the GNU General Public License as published by the Free Software * it under the terms of the GNU General Public License as published by
* Foundation, either version 3 of the License, or (at your option) any later * the Free Software Foundation, either version 3 of the License, or
* version. * (at your option) any later version.
* *
* This program is distributed in the hope that it will be useful, but WITHOUT * This program is distributed in the hope that it will be useful,
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * but WITHOUT ANY WARRANTY; without even the implied warranty of
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* more details. * GNU General Public License for more details.
* *
* You should have received a copy of the GNU General Public License along with * You should have received a copy of the GNU General Public License
* this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
*
* @author Mike Gerwitz
*/ */
/** /**
* Initializes fallback visibility object factory * Initializes fallback visibility object factory
* *

View File

@ -1,34 +1,32 @@
/** /**
* Handles building members (properties, methods) * Handles building members (properties, methods)
* *
* This prototype could have easily been refactored into a number of others
* (e.g. one for each type of member), but that refactoring has been deferred
* until necessary to ensure ease.js maintains a relatively small footprint.
* Ultimately, however, such a decision is a micro-optimization and shouldn't
* harm the design and maintainability of the software.
*
* TODO: Implementation is inconsistent between various members. For example,
* methods use ___$$keywords$$, whereas properties use [ val, keywords ]. Decide
* on a common format.
*
* Copyright (C) 2010, 2011, 2012, 2013 Mike Gerwitz * Copyright (C) 2010, 2011, 2012, 2013 Mike Gerwitz
* *
* This file is part of GNU ease.js. * This file is part of GNU ease.js.
* *
* ease.js is free software: you can redistribute it and/or modify it under the * ease.js is free software: you can redistribute it and/or modify
* terms of the GNU General Public License as published by the Free Software * it under the terms of the GNU General Public License as published by
* Foundation, either version 3 of the License, or (at your option) any later * the Free Software Foundation, either version 3 of the License, or
* version. * (at your option) any later version.
* *
* This program is distributed in the hope that it will be useful, but WITHOUT * This program is distributed in the hope that it will be useful,
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * but WITHOUT ANY WARRANTY; without even the implied warranty of
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* more details. * GNU General Public License for more details.
* *
* You should have received a copy of the GNU General Public License along with * You should have received a copy of the GNU General Public License
* this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
* *
* @author Mike Gerwitz * This prototype could have easily been refactored into a number of others
* (e.g. one for each type of member), but that refactoring has been
* deferred until necessary to ensure ease.js maintains a relatively small
* footprint. Ultimately, however, such a decision is a micro-optimization
* and shouldn't harm the design and maintainability of the software.
*
* TODO: Implementation is inconsistent between various members. For
* example, methods use ___$$keywords$$, whereas properties use [ val,
* keywords ]. Decide on a common format.
*/ */
var util = require( __dirname + '/util' ), var util = require( __dirname + '/util' ),

View File

@ -5,23 +5,20 @@
* *
* This file is part of GNU ease.js. * This file is part of GNU ease.js.
* *
* ease.js is free software: you can redistribute it and/or modify it under the * ease.js is free software: you can redistribute it and/or modify
* terms of the GNU General Public License as published by the Free Software * it under the terms of the GNU General Public License as published by
* Foundation, either version 3 of the License, or (at your option) any later * the Free Software Foundation, either version 3 of the License, or
* version. * (at your option) any later version.
* *
* This program is distributed in the hope that it will be useful, but WITHOUT * This program is distributed in the hope that it will be useful,
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * but WITHOUT ANY WARRANTY; without even the implied warranty of
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* more details. * GNU General Public License for more details.
* *
* You should have received a copy of the GNU General Public License along with * You should have received a copy of the GNU General Public License
* this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
*
* @author Mike Gerwitz
*/ */
module.exports = exports = function MemberBuilderValidator( warn_handler ) module.exports = exports = function MemberBuilderValidator( warn_handler )
{ {
// permit omitting 'new' keyword // permit omitting 'new' keyword

View File

@ -5,23 +5,20 @@
* *
* This file is part of GNU ease.js. * This file is part of GNU ease.js.
* *
* ease.js is free software: you can redistribute it and/or modify it under the * ease.js is free software: you can redistribute it and/or modify
* terms of the GNU General Public License as published by the Free Software * it under the terms of the GNU General Public License as published by
* Foundation, either version 3 of the License, or (at your option) any later * the Free Software Foundation, either version 3 of the License, or
* version. * (at your option) any later version.
* *
* This program is distributed in the hope that it will be useful, but WITHOUT * This program is distributed in the hope that it will be useful,
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * but WITHOUT ANY WARRANTY; without even the implied warranty of
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* more details. * GNU General Public License for more details.
* *
* You should have received a copy of the GNU General Public License along with * You should have received a copy of the GNU General Public License
* this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
*
* @author Mike Gerwitz
*/ */
/** /**
* Initializes factory to wrap methods * Initializes factory to wrap methods
* *

View File

@ -5,20 +5,18 @@
* *
* This file is part of GNU ease.js. * This file is part of GNU ease.js.
* *
* ease.js is free software: you can redistribute it and/or modify it under the * ease.js is free software: you can redistribute it and/or modify
* terms of the GNU General Public License as published by the Free Software * it under the terms of the GNU General Public License as published by
* Foundation, either version 3 of the License, or (at your option) any later * the Free Software Foundation, either version 3 of the License, or
* version. * (at your option) any later version.
* *
* This program is distributed in the hope that it will be useful, but WITHOUT * This program is distributed in the hope that it will be useful,
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * but WITHOUT ANY WARRANTY; without even the implied warranty of
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* more details. * GNU General Public License for more details.
* *
* You should have received a copy of the GNU General Public License along with * You should have received a copy of the GNU General Public License
* this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
*
* @author Mike Gerwitz
*/ */
/** /**

View File

@ -5,20 +5,18 @@
* *
* This file is part of GNU ease.js. * This file is part of GNU ease.js.
* *
* ease.js is free software: you can redistribute it and/or modify it under the * ease.js is free software: you can redistribute it and/or modify
* terms of the GNU General Public License as published by the Free Software * it under the terms of the GNU General Public License as published by
* Foundation, either version 3 of the License, or (at your option) any later * the Free Software Foundation, either version 3 of the License, or
* version. * (at your option) any later version.
* *
* This program is distributed in the hope that it will be useful, but WITHOUT * This program is distributed in the hope that it will be useful,
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * but WITHOUT ANY WARRANTY; without even the implied warranty of
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* more details. * GNU General Public License for more details.
* *
* You should have received a copy of the GNU General Public License along with * You should have received a copy of the GNU General Public License
* this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
*
* @author Mike Gerwitz
*/ */
/** /**

View File

@ -5,24 +5,21 @@
* *
* This file is part of GNU ease.js. * This file is part of GNU ease.js.
* *
* ease.js is free software: you can redistribute it and/or modify it under the * ease.js is free software: you can redistribute it and/or modify
* terms of the GNU General Public License as published by the Free Software * it under the terms of the GNU General Public License as published by
* Foundation, either version 3 of the License, or (at your option) any later * the Free Software Foundation, either version 3 of the License, or
* version. * (at your option) any later version.
* *
* This program is distributed in the hope that it will be useful, but WITHOUT * This program is distributed in the hope that it will be useful,
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * but WITHOUT ANY WARRANTY; without even the implied warranty of
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* more details. * GNU General Public License for more details.
* *
* You should have received a copy of the GNU General Public License along with * You should have received a copy of the GNU General Public License
* this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
* *
* @author Mike Gerwitz * XXX: Figure out how to resolve Closure Compiler's warning about shared
* @package core * type information
*
* XXX: Figure out how to resolve Closure Compiler's warning about shared type
* information
*/ */
// XXX: Tightly coupled // XXX: Tightly coupled

View File

@ -5,20 +5,18 @@
* *
* This file is part of GNU ease.js. * This file is part of GNU ease.js.
* *
* ease.js is free software: you can redistribute it and/or modify it under the * ease.js is free software: you can redistribute it and/or modify
* terms of the GNU General Public License as published by the Free Software * it under the terms of the GNU General Public License as published by
* Foundation, either version 3 of the License, or (at your option) any later * the Free Software Foundation, either version 3 of the License, or
* version. * (at your option) any later version.
* *
* This program is distributed in the hope that it will be useful, but WITHOUT * This program is distributed in the hope that it will be useful,
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * but WITHOUT ANY WARRANTY; without even the implied warranty of
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* more details. * GNU General Public License for more details.
* *
* You should have received a copy of the GNU General Public License along with * You should have received a copy of the GNU General Public License
* this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
*
* @author Mike Gerwitz
*/ */
var util = require( __dirname + '/util' ), var util = require( __dirname + '/util' ),

View File

@ -1,28 +1,26 @@
/** /**
* Wrapper permitting the definition of abstract classes * Wrapper permitting the definition of abstract classes
* *
* This doesn't actually introduce any new functionality. Rather, it sets a flag * This doesn't actually introduce any new functionality. Rather, it sets a
* to allow abstract methods within a class, forcing users to clearly state * flag to allow abstract methods within a class, forcing users to clearly
* that a class is abstract. * state that a class is abstract.
* *
* Copyright (C) 2010, 2011, 2013 Mike Gerwitz * Copyright (C) 2010, 2011, 2013 Mike Gerwitz
* *
* This file is part of GNU ease.js. * This file is part of GNU ease.js.
* *
* ease.js is free software: you can redistribute it and/or modify it under the * ease.js is free software: you can redistribute it and/or modify
* terms of the GNU General Public License as published by the Free Software * it under the terms of the GNU General Public License as published by
* Foundation, either version 3 of the License, or (at your option) any later * the Free Software Foundation, either version 3 of the License, or
* version. * (at your option) any later version.
* *
* This program is distributed in the hope that it will be useful, but WITHOUT * This program is distributed in the hope that it will be useful,
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * but WITHOUT ANY WARRANTY; without even the implied warranty of
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* more details. * GNU General Public License for more details.
* *
* You should have received a copy of the GNU General Public License along with * You should have received a copy of the GNU General Public License
* this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
*
* @author Mike Gerwitz
*/ */
var Class = require( __dirname + '/class' ); var Class = require( __dirname + '/class' );

View File

@ -5,20 +5,18 @@
* *
* This file is part of GNU ease.js. * This file is part of GNU ease.js.
* *
* ease.js is free software: you can redistribute it and/or modify it under the * ease.js is free software: you can redistribute it and/or modify
* terms of the GNU General Public License as published by the Free Software * it under the terms of the GNU General Public License as published by
* Foundation, either version 3 of the License, or (at your option) any later * the Free Software Foundation, either version 3 of the License, or
* version. * (at your option) any later version.
* *
* This program is distributed in the hope that it will be useful, but WITHOUT * This program is distributed in the hope that it will be useful,
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * but WITHOUT ANY WARRANTY; without even the implied warranty of
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* more details. * GNU General Public License for more details.
* *
* You should have received a copy of the GNU General Public License along with * You should have received a copy of the GNU General Public License
* this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
*
* @author Mike Gerwitz
*/ */
var Class = require( __dirname + '/class' ); var Class = require( __dirname + '/class' );

View File

@ -5,20 +5,18 @@
* *
* This file is part of GNU ease.js. * This file is part of GNU ease.js.
* *
* ease.js is free software: you can redistribute it and/or modify it under the * ease.js is free software: you can redistribute it and/or modify
* terms of the GNU General Public License as published by the Free Software * it under the terms of the GNU General Public License as published by
* Foundation, either version 3 of the License, or (at your option) any later * the Free Software Foundation, either version 3 of the License, or
* version. * (at your option) any later version.
* *
* This program is distributed in the hope that it will be useful, but WITHOUT * This program is distributed in the hope that it will be useful,
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * but WITHOUT ANY WARRANTY; without even the implied warranty of
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* more details. * GNU General Public License for more details.
* *
* You should have received a copy of the GNU General Public License along with * You should have received a copy of the GNU General Public License
* this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
*
* @author Mike Gerwitz
*/ */
var util = require( __dirname + '/util' ), var util = require( __dirname + '/util' ),

View File

@ -5,20 +5,18 @@
* *
* This file is part of GNU ease.js. * This file is part of GNU ease.js.
* *
* ease.js is free software: you can redistribute it and/or modify it under the * ease.js is free software: you can redistribute it and/or modify
* terms of the GNU General Public License as published by the Free Software * it under the terms of the GNU General Public License as published by
* Foundation, either version 3 of the License, or (at your option) any later * the Free Software Foundation, either version 3 of the License, or
* version. * (at your option) any later version.
* *
* This program is distributed in the hope that it will be useful, but WITHOUT * This program is distributed in the hope that it will be useful,
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * but WITHOUT ANY WARRANTY; without even the implied warranty of
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* more details. * GNU General Public License for more details.
* *
* You should have received a copy of the GNU General Public License along with * You should have received a copy of the GNU General Public License
* this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
*
* @author Mike Gerwitz
*/ */
/** /**

View File

@ -5,20 +5,18 @@
* *
* This file is part of GNU ease.js. * This file is part of GNU ease.js.
* *
* ease.js is free software: you can redistribute it and/or modify it under the * ease.js is free software: you can redistribute it and/or modify
* terms of the GNU General Public License as published by the Free Software * it under the terms of the GNU General Public License as published by
* Foundation, either version 3 of the License, or (at your option) any later * the Free Software Foundation, either version 3 of the License, or
* version. * (at your option) any later version.
* *
* This program is distributed in the hope that it will be useful, but WITHOUT * This program is distributed in the hope that it will be useful,
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * but WITHOUT ANY WARRANTY; without even the implied warranty of
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* more details. * GNU General Public License for more details.
* *
* You should have received a copy of the GNU General Public License along with * You should have received a copy of the GNU General Public License
* this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
*
* @author Mike Gerwitz
*/ */
var propParseKeywords = require( __dirname + '/prop_parser' ).parseKeywords; var propParseKeywords = require( __dirname + '/prop_parser' ).parseKeywords;

View File

@ -5,20 +5,18 @@
* *
* This file is part of GNU ease.js. * This file is part of GNU ease.js.
* *
* ease.js is free software: you can redistribute it and/or modify it under the * ease.js is free software: you can redistribute it and/or modify
* terms of the GNU General Public License as published by the Free Software * it under the terms of the GNU General Public License as published by
* Foundation, either version 3 of the License, or (at your option) any later * the Free Software Foundation, either version 3 of the License, or
* version. * (at your option) any later version.
* *
* This program is distributed in the hope that it will be useful, but WITHOUT * This program is distributed in the hope that it will be useful,
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * but WITHOUT ANY WARRANTY; without even the implied warranty of
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* more details. * GNU General Public License for more details.
* *
* You should have received a copy of the GNU General Public License along with * You should have received a copy of the GNU General Public License
* this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
*
* @author Mike Gerwitz
*/ */
/** /**

View File

@ -7,20 +7,18 @@
* *
* This file is part of GNU ease.js. * This file is part of GNU ease.js.
* *
* ease.js is free software: you can redistribute it and/or modify it under the * ease.js is free software: you can redistribute it and/or modify
* terms of the GNU General Public License as published by the Free Software * it under the terms of the GNU General Public License as published by
* Foundation, either version 3 of the License, or (at your option) any later * the Free Software Foundation, either version 3 of the License, or
* version. * (at your option) any later version.
* *
* This program is distributed in the hope that it will be useful, but WITHOUT * This program is distributed in the hope that it will be useful,
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * but WITHOUT ANY WARRANTY; without even the implied warranty of
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* more details. * GNU General Public License for more details.
* *
* You should have received a copy of the GNU General Public License along with * You should have received a copy of the GNU General Public License
* this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
*
* @author Mike Gerwitz
*/ */
require( './common' ).testCase( require( './common' ).testCase(

View File

@ -5,20 +5,18 @@
* *
* This file is part of GNU ease.js. * This file is part of GNU ease.js.
* *
* ease.js is free software: you can redistribute it and/or modify it under the * ease.js is free software: you can redistribute it and/or modify
* terms of the GNU General Public License as published by the Free Software * it under the terms of the GNU General Public License as published by
* Foundation, either version 3 of the License, or (at your option) any later * the Free Software Foundation, either version 3 of the License, or
* version. * (at your option) any later version.
* *
* This program is distributed in the hope that it will be useful, but WITHOUT * This program is distributed in the hope that it will be useful,
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * but WITHOUT ANY WARRANTY; without even the implied warranty of
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* more details. * GNU General Public License for more details.
* *
* You should have received a copy of the GNU General Public License along with * You should have received a copy of the GNU General Public License
* this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
*
* @author Mike Gerwitz
*/ */
require( 'common' ).testCase( require( 'common' ).testCase(

View File

@ -5,20 +5,18 @@
* *
* This file is part of GNU ease.js. * This file is part of GNU ease.js.
* *
* ease.js is free software: you can redistribute it and/or modify it under the * ease.js is free software: you can redistribute it and/or modify
* terms of the GNU General Public License as published by the Free Software * it under the terms of the GNU General Public License as published by
* Foundation, either version 3 of the License, or (at your option) any later * the Free Software Foundation, either version 3 of the License, or
* version. * (at your option) any later version.
* *
* This program is distributed in the hope that it will be useful, but WITHOUT * This program is distributed in the hope that it will be useful,
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * but WITHOUT ANY WARRANTY; without even the implied warranty of
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* more details. * GNU General Public License for more details.
* *
* You should have received a copy of the GNU General Public License along with * You should have received a copy of the GNU General Public License
* this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
*
* @author Mike Gerwitz
*/ */
var common = require( 'common' ), var common = require( 'common' ),

View File

@ -5,20 +5,18 @@
* *
* This file is part of GNU ease.js. * This file is part of GNU ease.js.
* *
* ease.js is free software: you can redistribute it and/or modify it under the * ease.js is free software: you can redistribute it and/or modify
* terms of the GNU General Public License as published by the Free Software * it under the terms of the GNU General Public License as published by
* Foundation, either version 3 of the License, or (at your option) any later * the Free Software Foundation, either version 3 of the License, or
* version. * (at your option) any later version.
* *
* This program is distributed in the hope that it will be useful, but WITHOUT * This program is distributed in the hope that it will be useful,
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * but WITHOUT ANY WARRANTY; without even the implied warranty of
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* more details. * GNU General Public License for more details.
* *
* You should have received a copy of the GNU General Public License along with * You should have received a copy of the GNU General Public License
* this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
*
* @author Mike Gerwitz
*/ */
require( 'common' ).testCase( require( 'common' ).testCase(

View File

@ -5,20 +5,18 @@
* *
* This file is part of GNU ease.js. * This file is part of GNU ease.js.
* *
* ease.js is free software: you can redistribute it and/or modify it under the * ease.js is free software: you can redistribute it and/or modify
* terms of the GNU General Public License as published by the Free Software * it under the terms of the GNU General Public License as published by
* Foundation, either version 3 of the License, or (at your option) any later * the Free Software Foundation, either version 3 of the License, or
* version. * (at your option) any later version.
* *
* This program is distributed in the hope that it will be useful, but WITHOUT * This program is distributed in the hope that it will be useful,
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * but WITHOUT ANY WARRANTY; without even the implied warranty of
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* more details. * GNU General Public License for more details.
* *
* You should have received a copy of the GNU General Public License along with * You should have received a copy of the GNU General Public License
* this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
*
* @author Mike Gerwitz
*/ */
var common = require( 'common' ), var common = require( 'common' ),

View File

@ -5,20 +5,18 @@
* *
* This file is part of GNU ease.js. * This file is part of GNU ease.js.
* *
* ease.js is free software: you can redistribute it and/or modify it under the * ease.js is free software: you can redistribute it and/or modify
* terms of the GNU General Public License as published by the Free Software * it under the terms of the GNU General Public License as published by
* Foundation, either version 3 of the License, or (at your option) any later * the Free Software Foundation, either version 3 of the License, or
* version. * (at your option) any later version.
* *
* This program is distributed in the hope that it will be useful, but WITHOUT * This program is distributed in the hope that it will be useful,
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * but WITHOUT ANY WARRANTY; without even the implied warranty of
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* more details. * GNU General Public License for more details.
* *
* You should have received a copy of the GNU General Public License along with * You should have received a copy of the GNU General Public License
* this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
*
* @author Mike Gerwitz
*/ */
var shared = require( __dirname + '/inc-common' ); var shared = require( __dirname + '/inc-common' );

View File

@ -5,20 +5,18 @@
* *
* This file is part of GNU ease.js. * This file is part of GNU ease.js.
* *
* ease.js is free software: you can redistribute it and/or modify it under the * ease.js is free software: you can redistribute it and/or modify
* terms of the GNU General Public License as published by the Free Software * it under the terms of the GNU General Public License as published by
* Foundation, either version 3 of the License, or (at your option) any later * the Free Software Foundation, either version 3 of the License, or
* version. * (at your option) any later version.
* *
* This program is distributed in the hope that it will be useful, but WITHOUT * This program is distributed in the hope that it will be useful,
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * but WITHOUT ANY WARRANTY; without even the implied warranty of
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* more details. * GNU General Public License for more details.
* *
* You should have received a copy of the GNU General Public License along with * You should have received a copy of the GNU General Public License
* this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
*
* @author Mike Gerwitz
*/ */
var shared = require( __dirname + '/inc-common' ); var shared = require( __dirname + '/inc-common' );

View File

@ -5,20 +5,18 @@
* *
* This file is part of GNU ease.js. * This file is part of GNU ease.js.
* *
* ease.js is free software: you can redistribute it and/or modify it under the * ease.js is free software: you can redistribute it and/or modify
* terms of the GNU General Public License as published by the Free Software * it under the terms of the GNU General Public License as published by
* Foundation, either version 3 of the License, or (at your option) any later * the Free Software Foundation, either version 3 of the License, or
* version. * (at your option) any later version.
* *
* This program is distributed in the hope that it will be useful, but WITHOUT * This program is distributed in the hope that it will be useful,
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * but WITHOUT ANY WARRANTY; without even the implied warranty of
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* more details. * GNU General Public License for more details.
* *
* You should have received a copy of the GNU General Public License along with * You should have received a copy of the GNU General Public License
* this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
*
* @author Mike Gerwitz
*/ */
// get-set-test (supported) // get-set-test (supported)

View File

@ -5,20 +5,18 @@
* *
* This file is part of GNU ease.js. * This file is part of GNU ease.js.
* *
* ease.js is free software: you can redistribute it and/or modify it under the * ease.js is free software: you can redistribute it and/or modify
* terms of the GNU General Public License as published by the Free Software * it under the terms of the GNU General Public License as published by
* Foundation, either version 3 of the License, or (at your option) any later * the Free Software Foundation, either version 3 of the License, or
* version. * (at your option) any later version.
* *
* This program is distributed in the hope that it will be useful, but WITHOUT * This program is distributed in the hope that it will be useful,
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * but WITHOUT ANY WARRANTY; without even the implied warranty of
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* more details. * GNU General Public License for more details.
* *
* You should have received a copy of the GNU General Public License along with * You should have received a copy of the GNU General Public License
* this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
*
* @author Mike Gerwitz
*/ */
/** /**

View File

@ -8,20 +8,18 @@
* *
* This file is part of GNU ease.js. * This file is part of GNU ease.js.
* *
* ease.js is free software: you can redistribute it and/or modify it under the * ease.js is free software: you can redistribute it and/or modify
* terms of the GNU General Public License as published by the Free Software * it under the terms of the GNU General Public License as published by
* Foundation, either version 3 of the License, or (at your option) any later * the Free Software Foundation, either version 3 of the License, or
* version. * (at your option) any later version.
* *
* This program is distributed in the hope that it will be useful, but WITHOUT * This program is distributed in the hope that it will be useful,
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * but WITHOUT ANY WARRANTY; without even the implied warranty of
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* more details. * GNU General Public License for more details.
* *
* You should have received a copy of the GNU General Public License along with * You should have received a copy of the GNU General Public License
* this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
*
* @author Mike Gerwitz
*/ */
var shared = require( __dirname + '/inc-common' ); var shared = require( __dirname + '/inc-common' );

View File

@ -5,20 +5,18 @@
* *
* This file is part of GNU ease.js. * This file is part of GNU ease.js.
* *
* ease.js is free software: you can redistribute it and/or modify it under the * ease.js is free software: you can redistribute it and/or modify
* terms of the GNU General Public License as published by the Free Software * it under the terms of the GNU General Public License as published by
* Foundation, either version 3 of the License, or (at your option) any later * the Free Software Foundation, either version 3 of the License, or
* version. * (at your option) any later version.
* *
* This program is distributed in the hope that it will be useful, but WITHOUT * This program is distributed in the hope that it will be useful,
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * but WITHOUT ANY WARRANTY; without even the implied warranty of
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* more details. * GNU General Public License for more details.
* *
* You should have received a copy of the GNU General Public License along with * You should have received a copy of the GNU General Public License
* this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
*
* @author Mike Gerwitz
*/ */
var shared = require( __dirname + '/inc-common' ); var shared = require( __dirname + '/inc-common' );

View File

@ -5,20 +5,18 @@
* *
* This file is part of GNU ease.js. * This file is part of GNU ease.js.
* *
* ease.js is free software: you can redistribute it and/or modify it under the * ease.js is free software: you can redistribute it and/or modify
* terms of the GNU General Public License as published by the Free Software * it under the terms of the GNU General Public License as published by
* Foundation, either version 3 of the License, or (at your option) any later * the Free Software Foundation, either version 3 of the License, or
* version. * (at your option) any later version.
* *
* This program is distributed in the hope that it will be useful, but WITHOUT * This program is distributed in the hope that it will be useful,
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * but WITHOUT ANY WARRANTY; without even the implied warranty of
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* more details. * GNU General Public License for more details.
* *
* You should have received a copy of the GNU General Public License along with * You should have received a copy of the GNU General Public License
* this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
*
* @author Mike Gerwitz
*/ */
var shared = require( __dirname + '/inc-common' ); var shared = require( __dirname + '/inc-common' );

View File

@ -5,23 +5,20 @@
* *
* This file is part of GNU ease.js. * This file is part of GNU ease.js.
* *
* ease.js is free software: you can redistribute it and/or modify it under the * ease.js is free software: you can redistribute it and/or modify
* terms of the GNU General Public License as published by the Free Software * it under the terms of the GNU General Public License as published by
* Foundation, either version 3 of the License, or (at your option) any later * the Free Software Foundation, either version 3 of the License, or
* version. * (at your option) any later version.
* *
* This program is distributed in the hope that it will be useful, but WITHOUT * This program is distributed in the hope that it will be useful,
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * but WITHOUT ANY WARRANTY; without even the implied warranty of
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* more details. * GNU General Public License for more details.
* *
* You should have received a copy of the GNU General Public License along with * You should have received a copy of the GNU General Public License
* this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
*
* @author Mike Gerwitz
*/ */
/** /**
* Member name to be used in tests * Member name to be used in tests
* @type {string} * @type {string}

View File

@ -5,23 +5,20 @@
* *
* This file is part of GNU ease.js. * This file is part of GNU ease.js.
* *
* ease.js is free software: you can redistribute it and/or modify it under the * ease.js is free software: you can redistribute it and/or modify
* terms of the GNU General Public License as published by the Free Software * it under the terms of the GNU General Public License as published by
* Foundation, either version 3 of the License, or (at your option) any later * the Free Software Foundation, either version 3 of the License, or
* version. * (at your option) any later version.
* *
* This program is distributed in the hope that it will be useful, but WITHOUT * This program is distributed in the hope that it will be useful,
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * but WITHOUT ANY WARRANTY; without even the implied warranty of
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* more details. * GNU General Public License for more details.
* *
* You should have received a copy of the GNU General Public License along with * You should have received a copy of the GNU General Public License
* this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
*
* @author Mike Gerwitz
*/ */
require( 'common' ).testCase( require( 'common' ).testCase(
{ {
caseSetUp: function() caseSetUp: function()

View File

@ -5,20 +5,18 @@
* *
* This file is part of GNU ease.js. * This file is part of GNU ease.js.
* *
* ease.js is free software: you can redistribute it and/or modify it under the * ease.js is free software: you can redistribute it and/or modify
* terms of the GNU General Public License as published by the Free Software * it under the terms of the GNU General Public License as published by
* Foundation, either version 3 of the License, or (at your option) any later * the Free Software Foundation, either version 3 of the License, or
* version. * (at your option) any later version.
* *
* This program is distributed in the hope that it will be useful, but WITHOUT * This program is distributed in the hope that it will be useful,
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * but WITHOUT ANY WARRANTY; without even the implied warranty of
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* more details. * GNU General Public License for more details.
* *
* You should have received a copy of the GNU General Public License along with * You should have received a copy of the GNU General Public License
* this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
*
* @author Mike Gerwitz
*/ */
require( 'common' ).testCase( require( 'common' ).testCase(

View File

@ -5,20 +5,18 @@
* *
* This file is part of GNU ease.js. * This file is part of GNU ease.js.
* *
* ease.js is free software: you can redistribute it and/or modify it under the * ease.js is free software: you can redistribute it and/or modify
* terms of the GNU General Public License as published by the Free Software * it under the terms of the GNU General Public License as published by
* Foundation, either version 3 of the License, or (at your option) any later * the Free Software Foundation, either version 3 of the License, or
* version. * (at your option) any later version.
* *
* This program is distributed in the hope that it will be useful, but WITHOUT * This program is distributed in the hope that it will be useful,
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * but WITHOUT ANY WARRANTY; without even the implied warranty of
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* more details. * GNU General Public License for more details.
* *
* You should have received a copy of the GNU General Public License along with * You should have received a copy of the GNU General Public License
* this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
*
* @author Mike Gerwitz
*/ */
require( 'common' ).testCase( require( 'common' ).testCase(

View File

@ -5,20 +5,18 @@
* *
* This file is part of GNU ease.js. * This file is part of GNU ease.js.
* *
* ease.js is free software: you can redistribute it and/or modify it under the * ease.js is free software: you can redistribute it and/or modify
* terms of the GNU General Public License as published by the Free Software * it under the terms of the GNU General Public License as published by
* Foundation, either version 3 of the License, or (at your option) any later * the Free Software Foundation, either version 3 of the License, or
* version. * (at your option) any later version.
* *
* This program is distributed in the hope that it will be useful, but WITHOUT * This program is distributed in the hope that it will be useful,
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * but WITHOUT ANY WARRANTY; without even the implied warranty of
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* more details. * GNU General Public License for more details.
* *
* You should have received a copy of the GNU General Public License along with * You should have received a copy of the GNU General Public License
* this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
*
* @author Mike Gerwitz
*/ */
require( 'common' ).testCase( require( 'common' ).testCase(

View File

@ -5,20 +5,18 @@
* *
* This file is part of GNU ease.js. * This file is part of GNU ease.js.
* *
* ease.js is free software: you can redistribute it and/or modify it under the * ease.js is free software: you can redistribute it and/or modify
* terms of the GNU General Public License as published by the Free Software * it under the terms of the GNU General Public License as published by
* Foundation, either version 3 of the License, or (at your option) any later * the Free Software Foundation, either version 3 of the License, or
* version. * (at your option) any later version.
* *
* This program is distributed in the hope that it will be useful, but WITHOUT * This program is distributed in the hope that it will be useful,
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * but WITHOUT ANY WARRANTY; without even the implied warranty of
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* more details. * GNU General Public License for more details.
* *
* You should have received a copy of the GNU General Public License along with * You should have received a copy of the GNU General Public License
* this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
*
* @author Mike Gerwitz
*/ */
require( 'common' ).testCase( require( 'common' ).testCase(

View File

@ -5,20 +5,18 @@
* *
* This file is part of GNU ease.js. * This file is part of GNU ease.js.
* *
* ease.js is free software: you can redistribute it and/or modify it under the * ease.js is free software: you can redistribute it and/or modify
* terms of the GNU General Public License as published by the Free Software * it under the terms of the GNU General Public License as published by
* Foundation, either version 3 of the License, or (at your option) any later * the Free Software Foundation, either version 3 of the License, or
* version. * (at your option) any later version.
* *
* This program is distributed in the hope that it will be useful, but WITHOUT * This program is distributed in the hope that it will be useful,
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * but WITHOUT ANY WARRANTY; without even the implied warranty of
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* more details. * GNU General Public License for more details.
* *
* You should have received a copy of the GNU General Public License along with * You should have received a copy of the GNU General Public License
* this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
*
* @author Mike Gerwitz
*/ */
/** /**

View File

@ -5,20 +5,18 @@
* *
* This file is part of GNU ease.js. * This file is part of GNU ease.js.
* *
* ease.js is free software: you can redistribute it and/or modify it under the * ease.js is free software: you can redistribute it and/or modify
* terms of the GNU General Public License as published by the Free Software * it under the terms of the GNU General Public License as published by
* Foundation, either version 3 of the License, or (at your option) any later * the Free Software Foundation, either version 3 of the License, or
* version. * (at your option) any later version.
* *
* This program is distributed in the hope that it will be useful, but WITHOUT * This program is distributed in the hope that it will be useful,
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * but WITHOUT ANY WARRANTY; without even the implied warranty of
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* more details. * GNU General Public License for more details.
* *
* You should have received a copy of the GNU General Public License along with * You should have received a copy of the GNU General Public License
* this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
*
* @author Mike Gerwitz
*/ */
var assert = require( 'assert' ), var assert = require( 'assert' ),

View File

@ -5,20 +5,18 @@
* *
* This file is part of GNU ease.js. * This file is part of GNU ease.js.
* *
* ease.js is free software: you can redistribute it and/or modify it under the * ease.js is free software: you can redistribute it and/or modify
* terms of the GNU General Public License as published by the Free Software * it under the terms of the GNU General Public License as published by
* Foundation, either version 3 of the License, or (at your option) any later * the Free Software Foundation, either version 3 of the License, or
* version. * (at your option) any later version.
* *
* This program is distributed in the hope that it will be useful, but WITHOUT * This program is distributed in the hope that it will be useful,
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * but WITHOUT ANY WARRANTY; without even the implied warranty of
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* more details. * GNU General Public License for more details.
* *
* You should have received a copy of the GNU General Public License along with * You should have received a copy of the GNU General Public License
* this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
*
* @author Mike Gerwitz
*/ */
/** /**

View File

@ -5,23 +5,20 @@
* Copyright (C) 2010, 2011, 2013 Mike Gerwitz * Copyright (C) 2010, 2011, 2013 Mike Gerwitz
* *
* This file is part of GNU ease.js. * This file is part of GNU ease.js.
*
* ease.js is free software: you can redistribute it and/or modify it under the
* terms of the GNU General Public License as published by the Free Software
* Foundation, either version 3 of the License, or (at your option) any later
* version.
*
* This program is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
* more details.
*
* You should have received a copy of the GNU General Public License along with
* this program. If not, see <http://www.gnu.org/licenses/>.
*
* @author Mike Gerwitz
*/
* ease.js is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
var common = require( __dirname + '/common.js' ), var common = require( __dirname + '/common.js' ),
Class = common.require( 'class' ) Class = common.require( 'class' )

View File

@ -6,23 +6,20 @@
* *
* This file is part of GNU ease.js. * This file is part of GNU ease.js.
* *
* ease.js is free software: you can redistribute it and/or modify it under the * ease.js is free software: you can redistribute it and/or modify
* terms of the GNU General Public License as published by the Free Software * it under the terms of the GNU General Public License as published by
* Foundation, either version 3 of the License, or (at your option) any later * the Free Software Foundation, either version 3 of the License, or
* version. * (at your option) any later version.
* *
* This program is distributed in the hope that it will be useful, but WITHOUT * This program is distributed in the hope that it will be useful,
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * but WITHOUT ANY WARRANTY; without even the implied warranty of
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* more details. * GNU General Public License for more details.
* *
* You should have received a copy of the GNU General Public License along with * You should have received a copy of the GNU General Public License
* this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
*
* @author Mike Gerwitz
*/ */
var common = require( __dirname + '/common.js' ), var common = require( __dirname + '/common.js' ),
Class = common.require( 'class' ) Class = common.require( 'class' )

View File

@ -6,23 +6,20 @@
* *
* This file is part of GNU ease.js. * This file is part of GNU ease.js.
* *
* ease.js is free software: you can redistribute it and/or modify it under the * ease.js is free software: you can redistribute it and/or modify
* terms of the GNU General Public License as published by the Free Software * it under the terms of the GNU General Public License as published by
* Foundation, either version 3 of the License, or (at your option) any later * the Free Software Foundation, either version 3 of the License, or
* version. * (at your option) any later version.
* *
* This program is distributed in the hope that it will be useful, but WITHOUT * This program is distributed in the hope that it will be useful,
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * but WITHOUT ANY WARRANTY; without even the implied warranty of
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* more details. * GNU General Public License for more details.
* *
* You should have received a copy of the GNU General Public License along with * You should have received a copy of the GNU General Public License
* this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
*
* @author Mike Gerwitz
*/ */
var common = require( __dirname + '/common.js' ), var common = require( __dirname + '/common.js' ),
Class = common.require( 'class' ) Class = common.require( 'class' )

View File

@ -6,23 +6,20 @@
* *
* This file is part of GNU ease.js. * This file is part of GNU ease.js.
* *
* ease.js is free software: you can redistribute it and/or modify it under the * ease.js is free software: you can redistribute it and/or modify
* terms of the GNU General Public License as published by the Free Software * it under the terms of the GNU General Public License as published by
* Foundation, either version 3 of the License, or (at your option) any later * the Free Software Foundation, either version 3 of the License, or
* version. * (at your option) any later version.
* *
* This program is distributed in the hope that it will be useful, but WITHOUT * This program is distributed in the hope that it will be useful,
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * but WITHOUT ANY WARRANTY; without even the implied warranty of
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* more details. * GNU General Public License for more details.
* *
* You should have received a copy of the GNU General Public License along with * You should have received a copy of the GNU General Public License
* this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
*
* @author Mike Gerwitz
*/ */
var common = require( __dirname + '/common.js' ), var common = require( __dirname + '/common.js' ),
Class = common.require( 'class' ) Class = common.require( 'class' )

View File

@ -5,23 +5,20 @@
* *
* This file is part of GNU ease.js. * This file is part of GNU ease.js.
* *
* ease.js is free software: you can redistribute it and/or modify it under the * ease.js is free software: you can redistribute it and/or modify
* terms of the GNU General Public License as published by the Free Software * it under the terms of the GNU General Public License as published by
* Foundation, either version 3 of the License, or (at your option) any later * the Free Software Foundation, either version 3 of the License, or
* version. * (at your option) any later version.
* *
* This program is distributed in the hope that it will be useful, but WITHOUT * This program is distributed in the hope that it will be useful,
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * but WITHOUT ANY WARRANTY; without even the implied warranty of
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* more details. * GNU General Public License for more details.
* *
* You should have received a copy of the GNU General Public License along with * You should have received a copy of the GNU General Public License
* this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
*
* @author Mike Gerwitz
*/ */
var common = require( __dirname + '/common.js' ), var common = require( __dirname + '/common.js' ),
Class = common.require( 'class' ) Class = common.require( 'class' )

View File

@ -5,23 +5,20 @@
* Copyright (C) 2010, 2011, 2013 Mike Gerwitz * Copyright (C) 2010, 2011, 2013 Mike Gerwitz
* *
* This file is part of GNU ease.js. * This file is part of GNU ease.js.
*
* ease.js is free software: you can redistribute it and/or modify it under the
* terms of the GNU General Public License as published by the Free Software
* Foundation, either version 3 of the License, or (at your option) any later
* version.
*
* This program is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
* more details.
*
* You should have received a copy of the GNU General Public License along with
* this program. If not, see <http://www.gnu.org/licenses/>.
*
* @author Mike Gerwitz
*/
* ease.js is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
var common = require( __dirname + '/common.js' ), var common = require( __dirname + '/common.js' ),
Class = common.require( 'class' ) Class = common.require( 'class' )

View File

@ -5,23 +5,20 @@
* Copyright (C) 2010, 2011, 2013 Mike Gerwitz * Copyright (C) 2010, 2011, 2013 Mike Gerwitz
* *
* This file is part of GNU ease.js. * This file is part of GNU ease.js.
*
* ease.js is free software: you can redistribute it and/or modify it under the
* terms of the GNU General Public License as published by the Free Software
* Foundation, either version 3 of the License, or (at your option) any later
* version.
*
* This program is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
* more details.
*
* You should have received a copy of the GNU General Public License along with
* this program. If not, see <http://www.gnu.org/licenses/>.
*
* @author Mike Gerwitz
*/
* ease.js is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
var common = require( __dirname + '/common.js' ), var common = require( __dirname + '/common.js' ),
Class = common.require( 'class' ) Class = common.require( 'class' )

View File

@ -6,23 +6,20 @@
* *
* This file is part of GNU ease.js. * This file is part of GNU ease.js.
* *
* ease.js is free software: you can redistribute it and/or modify it under the * ease.js is free software: you can redistribute it and/or modify
* terms of the GNU General Public License as published by the Free Software * it under the terms of the GNU General Public License as published by
* Foundation, either version 3 of the License, or (at your option) any later * the Free Software Foundation, either version 3 of the License, or
* version. * (at your option) any later version.
* *
* This program is distributed in the hope that it will be useful, but WITHOUT * This program is distributed in the hope that it will be useful,
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * but WITHOUT ANY WARRANTY; without even the implied warranty of
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* more details. * GNU General Public License for more details.
* *
* You should have received a copy of the GNU General Public License along with * You should have received a copy of the GNU General Public License
* this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
*
* @author Mike Gerwitz
*/ */
var common = require( __dirname + '/common.js' ), var common = require( __dirname + '/common.js' ),
Class = common.require( 'class' ) Class = common.require( 'class' )

View File

@ -6,23 +6,20 @@
* *
* This file is part of GNU ease.js. * This file is part of GNU ease.js.
* *
* ease.js is free software: you can redistribute it and/or modify it under the * ease.js is free software: you can redistribute it and/or modify
* terms of the GNU General Public License as published by the Free Software * it under the terms of the GNU General Public License as published by
* Foundation, either version 3 of the License, or (at your option) any later * the Free Software Foundation, either version 3 of the License, or
* version. * (at your option) any later version.
* *
* This program is distributed in the hope that it will be useful, but WITHOUT * This program is distributed in the hope that it will be useful,
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * but WITHOUT ANY WARRANTY; without even the implied warranty of
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* more details. * GNU General Public License for more details.
* *
* You should have received a copy of the GNU General Public License along with * You should have received a copy of the GNU General Public License
* this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
*
* @author Mike Gerwitz
*/ */
var common = require( __dirname + '/common.js' ), var common = require( __dirname + '/common.js' ),
Class = common.require( 'class' ) Class = common.require( 'class' )

View File

@ -5,23 +5,20 @@
* *
* This file is part of GNU ease.js. * This file is part of GNU ease.js.
* *
* ease.js is free software: you can redistribute it and/or modify it under the * ease.js is free software: you can redistribute it and/or modify
* terms of the GNU General Public License as published by the Free Software * it under the terms of the GNU General Public License as published by
* Foundation, either version 3 of the License, or (at your option) any later * the Free Software Foundation, either version 3 of the License, or
* version. * (at your option) any later version.
* *
* This program is distributed in the hope that it will be useful, but WITHOUT * This program is distributed in the hope that it will be useful,
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * but WITHOUT ANY WARRANTY; without even the implied warranty of
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* more details. * GNU General Public License for more details.
* *
* You should have received a copy of the GNU General Public License along with * You should have received a copy of the GNU General Public License
* this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
*
* @author Mike Gerwitz
*/ */
var common = require( __dirname + '/common.js' ), var common = require( __dirname + '/common.js' ),
Class = common.require( 'class' ) Class = common.require( 'class' )

View File

@ -5,23 +5,20 @@
* Copyright (C) 2011, 2013 Mike Gerwitz * Copyright (C) 2011, 2013 Mike Gerwitz
* *
* This file is part of GNU ease.js. * This file is part of GNU ease.js.
*
* ease.js is free software: you can redistribute it and/or modify it under the
* terms of the GNU General Public License as published by the Free Software
* Foundation, either version 3 of the License, or (at your option) any later
* version.
*
* This program is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
* more details.
*
* You should have received a copy of the GNU General Public License along with
* this program. If not, see <http://www.gnu.org/licenses/>.
*
* @author Mike Gerwitz
*/
* ease.js is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
var common = require( __dirname + '/common.js' ), var common = require( __dirname + '/common.js' ),
Class = common.require( 'class' ), Class = common.require( 'class' ),

View File

@ -5,23 +5,20 @@
* *
* This file is part of GNU ease.js. * This file is part of GNU ease.js.
* *
* ease.js is free software: you can redistribute it and/or modify it under the * ease.js is free software: you can redistribute it and/or modify
* terms of the GNU General Public License as published by the Free Software * it under the terms of the GNU General Public License as published by
* Foundation, either version 3 of the License, or (at your option) any later * the Free Software Foundation, either version 3 of the License, or
* version. * (at your option) any later version.
* *
* This program is distributed in the hope that it will be useful, but WITHOUT * This program is distributed in the hope that it will be useful,
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * but WITHOUT ANY WARRANTY; without even the implied warranty of
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* more details. * GNU General Public License for more details.
* *
* You should have received a copy of the GNU General Public License along with * You should have received a copy of the GNU General Public License
* this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
*
* @author Mike Gerwitz
*/ */
var common = require( __dirname + '/common.js' ), var common = require( __dirname + '/common.js' ),
Class = common.require( 'class' ) Class = common.require( 'class' )

View File

@ -5,23 +5,20 @@
* *
* This file is part of GNU ease.js. * This file is part of GNU ease.js.
* *
* ease.js is free software: you can redistribute it and/or modify it under the * ease.js is free software: you can redistribute it and/or modify
* terms of the GNU General Public License as published by the Free Software * it under the terms of the GNU General Public License as published by
* Foundation, either version 3 of the License, or (at your option) any later * the Free Software Foundation, either version 3 of the License, or
* version. * (at your option) any later version.
* *
* This program is distributed in the hope that it will be useful, but WITHOUT * This program is distributed in the hope that it will be useful,
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * but WITHOUT ANY WARRANTY; without even the implied warranty of
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* more details. * GNU General Public License for more details.
* *
* You should have received a copy of the GNU General Public License along with * You should have received a copy of the GNU General Public License
* this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
*
* @author Mike Gerwitz
*/ */
var common = require( __dirname + '/common.js' ), var common = require( __dirname + '/common.js' ),
Class = common.require( 'class' ) Class = common.require( 'class' )

View File

@ -22,23 +22,20 @@
* *
* This file is part of GNU ease.js. * This file is part of GNU ease.js.
* *
* ease.js is free software: you can redistribute it and/or modify it under the * ease.js is free software: you can redistribute it and/or modify
* terms of the GNU General Public License as published by the Free Software * it under the terms of the GNU General Public License as published by
* Foundation, either version 3 of the License, or (at your option) any later * the Free Software Foundation, either version 3 of the License, or
* version. * (at your option) any later version.
* *
* This program is distributed in the hope that it will be useful, but WITHOUT * This program is distributed in the hope that it will be useful,
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * but WITHOUT ANY WARRANTY; without even the implied warranty of
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* more details. * GNU General Public License for more details.
* *
* You should have received a copy of the GNU General Public License along with * You should have received a copy of the GNU General Public License
* this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
*
* @author Mike Gerwitz
*/ */
var common = require( __dirname + '/common.js' ), var common = require( __dirname + '/common.js' ),
Class = common.require( 'class' ), Class = common.require( 'class' ),

View File

@ -5,23 +5,20 @@
* *
* This file is part of GNU ease.js. * This file is part of GNU ease.js.
* *
* ease.js is free software: you can redistribute it and/or modify it under the * ease.js is free software: you can redistribute it and/or modify
* terms of the GNU General Public License as published by the Free Software * it under the terms of the GNU General Public License as published by
* Foundation, either version 3 of the License, or (at your option) any later * the Free Software Foundation, either version 3 of the License, or
* version. * (at your option) any later version.
* *
* This program is distributed in the hope that it will be useful, but WITHOUT * This program is distributed in the hope that it will be useful,
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * but WITHOUT ANY WARRANTY; without even the implied warranty of
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* more details. * GNU General Public License for more details.
* *
* You should have received a copy of the GNU General Public License along with * You should have received a copy of the GNU General Public License
* this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
*
* @author Mike Gerwitz
*/ */
var common = require( __dirname + '/common.js' ); var common = require( __dirname + '/common.js' );
// we run this test once because require() will cache the object in memory // we run this test once because require() will cache the object in memory

View File

@ -6,23 +6,20 @@
* *
* This file is part of GNU ease.js. * This file is part of GNU ease.js.
* *
* ease.js is free software: you can redistribute it and/or modify it under the * ease.js is free software: you can redistribute it and/or modify
* terms of the GNU General Public License as published by the Free Software * it under the terms of the GNU General Public License as published by
* Foundation, either version 3 of the License, or (at your option) any later * the Free Software Foundation, either version 3 of the License, or
* version. * (at your option) any later version.
* *
* This program is distributed in the hope that it will be useful, but WITHOUT * This program is distributed in the hope that it will be useful,
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * but WITHOUT ANY WARRANTY; without even the implied warranty of
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* more details. * GNU General Public License for more details.
* *
* You should have received a copy of the GNU General Public License along with * You should have received a copy of the GNU General Public License
* this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
*
* @author Mike Gerwitz
*/ */
var common = require( __dirname + '/common.js' ), var common = require( __dirname + '/common.js' ),
Class = common.require( 'class' ), Class = common.require( 'class' ),

View File

@ -8,20 +8,18 @@
* *
* This file is part of GNU ease.js. * This file is part of GNU ease.js.
* *
* ease.js is free software: you can redistribute it and/or modify it under the * ease.js is free software: you can redistribute it and/or modify
* terms of the GNU General Public License as published by the Free Software * it under the terms of the GNU General Public License as published by
* Foundation, either version 3 of the License, or (at your option) any later * the Free Software Foundation, either version 3 of the License, or
* version. * (at your option) any later version.
* *
* This program is distributed in the hope that it will be useful, but WITHOUT * This program is distributed in the hope that it will be useful,
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * but WITHOUT ANY WARRANTY; without even the implied warranty of
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* more details. * GNU General Public License for more details.
* *
* You should have received a copy of the GNU General Public License along with * You should have received a copy of the GNU General Public License
* this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
*
* @author Mike Gerwitz
*/ */
var common = require( 'common' ); var common = require( 'common' );

View File

@ -5,20 +5,18 @@
* *
* This file is part of GNU ease.js. * This file is part of GNU ease.js.
* *
* ease.js is free software: you can redistribute it and/or modify it under the * ease.js is free software: you can redistribute it and/or modify
* terms of the GNU General Public License as published by the Free Software * it under the terms of the GNU General Public License as published by
* Foundation, either version 3 of the License, or (at your option) any later * the Free Software Foundation, either version 3 of the License, or
* version. * (at your option) any later version.
* *
* This program is distributed in the hope that it will be useful, but WITHOUT * This program is distributed in the hope that it will be useful,
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * but WITHOUT ANY WARRANTY; without even the implied warranty of
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* more details. * GNU General Public License for more details.
* *
* You should have received a copy of the GNU General Public License along with * You should have received a copy of the GNU General Public License
* this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
*
* @author Mike Gerwitz
*/ */
var common = require( './common' ), var common = require( './common' ),

View File

@ -5,20 +5,18 @@
* *
* This file is part of GNU ease.js. * This file is part of GNU ease.js.
* *
* ease.js is free software: you can redistribute it and/or modify it under the * ease.js is free software: you can redistribute it and/or modify
* terms of the GNU General Public License as published by the Free Software * it under the terms of the GNU General Public License as published by
* Foundation, either version 3 of the License, or (at your option) any later * the Free Software Foundation, either version 3 of the License, or
* version. * (at your option) any later version.
* *
* This program is distributed in the hope that it will be useful, but WITHOUT * This program is distributed in the hope that it will be useful,
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * but WITHOUT ANY WARRANTY; without even the implied warranty of
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* more details. * GNU General Public License for more details.
* *
* You should have received a copy of the GNU General Public License along with * You should have received a copy of the GNU General Public License
* this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
*
* @author Mike Gerwitz
*/ */
var common = require( './common' ), var common = require( './common' ),

View File

@ -5,20 +5,18 @@
* *
* This file is part of GNU ease.js. * This file is part of GNU ease.js.
* *
* ease.js is free software: you can redistribute it and/or modify it under the * ease.js is free software: you can redistribute it and/or modify
* terms of the GNU General Public License as published by the Free Software * it under the terms of the GNU General Public License as published by
* Foundation, either version 3 of the License, or (at your option) any later * the Free Software Foundation, either version 3 of the License, or
* version. * (at your option) any later version.
* *
* This program is distributed in the hope that it will be useful, but WITHOUT * This program is distributed in the hope that it will be useful,
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * but WITHOUT ANY WARRANTY; without even the implied warranty of
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* more details. * GNU General Public License for more details.
* *
* You should have received a copy of the GNU General Public License along with * You should have received a copy of the GNU General Public License
* this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
*
* @author Mike Gerwitz
*/ */
var common = require( './common' ), var common = require( './common' ),

View File

@ -5,20 +5,18 @@
* *
* This file is part of GNU ease.js. * This file is part of GNU ease.js.
* *
* ease.js is free software: you can redistribute it and/or modify it under the * ease.js is free software: you can redistribute it and/or modify
* terms of the GNU General Public License as published by the Free Software * it under the terms of the GNU General Public License as published by
* Foundation, either version 3 of the License, or (at your option) any later * the Free Software Foundation, either version 3 of the License, or
* version. * (at your option) any later version.
* *
* This program is distributed in the hope that it will be useful, but WITHOUT * This program is distributed in the hope that it will be useful,
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * but WITHOUT ANY WARRANTY; without even the implied warranty of
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* more details. * GNU General Public License for more details.
* *
* You should have received a copy of the GNU General Public License along with * You should have received a copy of the GNU General Public License
* this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
*
* @author Mike Gerwitz
*/ */
var common = require( './common' ), var common = require( './common' ),

View File

@ -5,20 +5,18 @@
* *
* This file is part of GNU ease.js. * This file is part of GNU ease.js.
* *
* ease.js is free software: you can redistribute it and/or modify it under the * ease.js is free software: you can redistribute it and/or modify
* terms of the GNU General Public License as published by the Free Software * it under the terms of the GNU General Public License as published by
* Foundation, either version 3 of the License, or (at your option) any later * the Free Software Foundation, either version 3 of the License, or
* version. * (at your option) any later version.
* *
* This program is distributed in the hope that it will be useful, but WITHOUT * This program is distributed in the hope that it will be useful,
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * but WITHOUT ANY WARRANTY; without even the implied warranty of
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* more details. * GNU General Public License for more details.
* *
* You should have received a copy of the GNU General Public License along with * You should have received a copy of the GNU General Public License
* this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
*
* @author Mike Gerwitz
*/ */
var common = require( './common' ), var common = require( './common' ),

View File

@ -5,20 +5,18 @@
* *
* This file is part of GNU ease.js. * This file is part of GNU ease.js.
* *
* ease.js is free software: you can redistribute it and/or modify it under the * ease.js is free software: you can redistribute it and/or modify
* terms of the GNU General Public License as published by the Free Software * it under the terms of the GNU General Public License as published by
* Foundation, either version 3 of the License, or (at your option) any later * the Free Software Foundation, either version 3 of the License, or
* version. * (at your option) any later version.
* *
* This program is distributed in the hope that it will be useful, but WITHOUT * This program is distributed in the hope that it will be useful,
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * but WITHOUT ANY WARRANTY; without even the implied warranty of
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* more details. * GNU General Public License for more details.
* *
* You should have received a copy of the GNU General Public License along with * You should have received a copy of the GNU General Public License
* this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
*
* @author Mike Gerwitz
*/ */
var common = require( './common' ), var common = require( './common' ),

View File

@ -5,20 +5,18 @@
* *
* This file is part of GNU ease.js. * This file is part of GNU ease.js.
* *
* ease.js is free software: you can redistribute it and/or modify it under the * ease.js is free software: you can redistribute it and/or modify
* terms of the GNU General Public License as published by the Free Software * it under the terms of the GNU General Public License as published by
* Foundation, either version 3 of the License, or (at your option) any later * the Free Software Foundation, either version 3 of the License, or
* version. * (at your option) any later version.
* *
* This program is distributed in the hope that it will be useful, but WITHOUT * This program is distributed in the hope that it will be useful,
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * but WITHOUT ANY WARRANTY; without even the implied warranty of
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* more details. * GNU General Public License for more details.
* *
* You should have received a copy of the GNU General Public License along with * You should have received a copy of the GNU General Public License
* this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
*
* @author Mike Gerwitz
*/ */
var common = require( './common' ), var common = require( './common' ),

View File

@ -5,20 +5,18 @@
* *
* This file is part of GNU ease.js. * This file is part of GNU ease.js.
* *
* ease.js is free software: you can redistribute it and/or modify it under the * ease.js is free software: you can redistribute it and/or modify
* terms of the GNU General Public License as published by the Free Software * it under the terms of the GNU General Public License as published by
* Foundation, either version 3 of the License, or (at your option) any later * the Free Software Foundation, either version 3 of the License, or
* version. * (at your option) any later version.
* *
* This program is distributed in the hope that it will be useful, but WITHOUT * This program is distributed in the hope that it will be useful,
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * but WITHOUT ANY WARRANTY; without even the implied warranty of
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* more details. * GNU General Public License for more details.
* *
* You should have received a copy of the GNU General Public License along with * You should have received a copy of the GNU General Public License
* this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
*
* @author Mike Gerwitz
*/ */
var common = require( './common' ), var common = require( './common' ),

View File

@ -5,20 +5,18 @@
* *
* This file is part of GNU ease.js. * This file is part of GNU ease.js.
* *
* ease.js is free software: you can redistribute it and/or modify it under the * ease.js is free software: you can redistribute it and/or modify
* terms of the GNU General Public License as published by the Free Software * it under the terms of the GNU General Public License as published by
* Foundation, either version 3 of the License, or (at your option) any later * the Free Software Foundation, either version 3 of the License, or
* version. * (at your option) any later version.
* *
* This program is distributed in the hope that it will be useful, but WITHOUT * This program is distributed in the hope that it will be useful,
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * but WITHOUT ANY WARRANTY; without even the implied warranty of
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* more details. * GNU General Public License for more details.
* *
* You should have received a copy of the GNU General Public License along with * You should have received a copy of the GNU General Public License
* this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
*
* @author Mike Gerwitz
*/ */
var common = require( './common' ), var common = require( './common' ),

View File

@ -5,20 +5,18 @@
* *
* This file is part of GNU ease.js. * This file is part of GNU ease.js.
* *
* ease.js is free software: you can redistribute it and/or modify it under the * ease.js is free software: you can redistribute it and/or modify
* terms of the GNU General Public License as published by the Free Software * it under the terms of the GNU General Public License as published by
* Foundation, either version 3 of the License, or (at your option) any later * the Free Software Foundation, either version 3 of the License, or
* version. * (at your option) any later version.
* *
* This program is distributed in the hope that it will be useful, but WITHOUT * This program is distributed in the hope that it will be useful,
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * but WITHOUT ANY WARRANTY; without even the implied warranty of
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* more details. * GNU General Public License for more details.
* *
* You should have received a copy of the GNU General Public License along with * You should have received a copy of the GNU General Public License
* this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
*
* @author Mike Gerwitz
*/ */
var common = require( './common' ), var common = require( './common' ),

View File

@ -5,20 +5,18 @@
* *
* This file is part of GNU ease.js. * This file is part of GNU ease.js.
* *
* ease.js is free software: you can redistribute it and/or modify it under the * ease.js is free software: you can redistribute it and/or modify
* terms of the GNU General Public License as published by the Free Software * it under the terms of the GNU General Public License as published by
* Foundation, either version 3 of the License, or (at your option) any later * the Free Software Foundation, either version 3 of the License, or
* version. * (at your option) any later version.
* *
* This program is distributed in the hope that it will be useful, but WITHOUT * This program is distributed in the hope that it will be useful,
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * but WITHOUT ANY WARRANTY; without even the implied warranty of
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* more details. * GNU General Public License for more details.
* *
* You should have received a copy of the GNU General Public License along with * You should have received a copy of the GNU General Public License
* this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
*
* @author Mike Gerwitz
*/ */
var common = require( './common' ), var common = require( './common' ),

View File

@ -5,20 +5,18 @@
* *
* This file is part of GNU ease.js. * This file is part of GNU ease.js.
* *
* ease.js is free software: you can redistribute it and/or modify it under the * ease.js is free software: you can redistribute it and/or modify
* terms of the GNU General Public License as published by the Free Software * it under the terms of the GNU General Public License as published by
* Foundation, either version 3 of the License, or (at your option) any later * the Free Software Foundation, either version 3 of the License, or
* version. * (at your option) any later version.
* *
* This program is distributed in the hope that it will be useful, but WITHOUT * This program is distributed in the hope that it will be useful,
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * but WITHOUT ANY WARRANTY; without even the implied warranty of
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* more details. * GNU General Public License for more details.
* *
* You should have received a copy of the GNU General Public License along with * You should have received a copy of the GNU General Public License
* this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
*
* @author Mike Gerwitz
*/ */
var common = require( './common' ), var common = require( './common' ),

View File

@ -5,20 +5,18 @@
* *
* This file is part of GNU ease.js. * This file is part of GNU ease.js.
* *
* ease.js is free software: you can redistribute it and/or modify it under the * ease.js is free software: you can redistribute it and/or modify
* terms of the GNU General Public License as published by the Free Software * it under the terms of the GNU General Public License as published by
* Foundation, either version 3 of the License, or (at your option) any later * the Free Software Foundation, either version 3 of the License, or
* version. * (at your option) any later version.
* *
* This program is distributed in the hope that it will be useful, but WITHOUT * This program is distributed in the hope that it will be useful,
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * but WITHOUT ANY WARRANTY; without even the implied warranty of
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* more details. * GNU General Public License for more details.
* *
* You should have received a copy of the GNU General Public License along with * You should have received a copy of the GNU General Public License
* this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
*
* @author Mike Gerwitz
*/ */
var common = require( './common' ), var common = require( './common' ),

View File

@ -7,20 +7,18 @@
* *
* This file is part of GNU ease.js. * This file is part of GNU ease.js.
* *
* ease.js is free software: you can redistribute it and/or modify it under the * ease.js is free software: you can redistribute it and/or modify
* terms of the GNU General Public License as published by the Free Software * it under the terms of the GNU General Public License as published by
* Foundation, either version 3 of the License, or (at your option) any later * the Free Software Foundation, either version 3 of the License, or
* version. * (at your option) any later version.
* *
* This program is distributed in the hope that it will be useful, but WITHOUT * This program is distributed in the hope that it will be useful,
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * but WITHOUT ANY WARRANTY; without even the implied warranty of
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* more details. * GNU General Public License for more details.
* *
* You should have received a copy of the GNU General Public License along with * You should have received a copy of the GNU General Public License
* this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
*
* @author Mike Gerwitz
*/ */
var common = require( './common' ), var common = require( './common' ),

View File

@ -10,20 +10,18 @@
* *
* This file is part of GNU ease.js. * This file is part of GNU ease.js.
* *
* ease.js is free software: you can redistribute it and/or modify it under the * ease.js is free software: you can redistribute it and/or modify
* terms of the GNU General Public License as published by the Free Software * it under the terms of the GNU General Public License as published by
* Foundation, either version 3 of the License, or (at your option) any later * the Free Software Foundation, either version 3 of the License, or
* version. * (at your option) any later version.
* *
* This program is distributed in the hope that it will be useful, but WITHOUT * This program is distributed in the hope that it will be useful,
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * but WITHOUT ANY WARRANTY; without even the implied warranty of
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* more details. * GNU General Public License for more details.
* *
* You should have received a copy of the GNU General Public License along with * You should have received a copy of the GNU General Public License
* this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
*
* @author Mike Gerwitz
*/ */
var common = require( './common' ), var common = require( './common' ),

View File

@ -5,20 +5,18 @@
* *
* This file is part of GNU ease.js. * This file is part of GNU ease.js.
* *
* ease.js is free software: you can redistribute it and/or modify it under the * ease.js is free software: you can redistribute it and/or modify
* terms of the GNU General Public License as published by the Free Software * it under the terms of the GNU General Public License as published by
* Foundation, either version 3 of the License, or (at your option) any later * the Free Software Foundation, either version 3 of the License, or
* version. * (at your option) any later version.
* *
* This program is distributed in the hope that it will be useful, but WITHOUT * This program is distributed in the hope that it will be useful,
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * but WITHOUT ANY WARRANTY; without even the implied warranty of
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* more details. * GNU General Public License for more details.
* *
* You should have received a copy of the GNU General Public License along with * You should have received a copy of the GNU General Public License
* this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
*
* @author Mike Gerwitz
*/ */
var common = require( './common' ), var common = require( './common' ),

View File

@ -5,20 +5,18 @@
* *
* This file is part of GNU ease.js. * This file is part of GNU ease.js.
* *
* ease.js is free software: you can redistribute it and/or modify it under the * ease.js is free software: you can redistribute it and/or modify
* terms of the GNU General Public License as published by the Free Software * it under the terms of the GNU General Public License as published by
* Foundation, either version 3 of the License, or (at your option) any later * the Free Software Foundation, either version 3 of the License, or
* version. * (at your option) any later version.
* *
* This program is distributed in the hope that it will be useful, but WITHOUT * This program is distributed in the hope that it will be useful,
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * but WITHOUT ANY WARRANTY; without even the implied warranty of
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* more details. * GNU General Public License for more details.
* *
* You should have received a copy of the GNU General Public License along with * You should have received a copy of the GNU General Public License
* this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
*
* @author Mike Gerwitz
*/ */
var common = require( './common' ), var common = require( './common' ),

View File

@ -5,20 +5,18 @@
* *
* This file is part of GNU ease.js. * This file is part of GNU ease.js.
* *
* ease.js is free software: you can redistribute it and/or modify it under the * ease.js is free software: you can redistribute it and/or modify
* terms of the GNU General Public License as published by the Free Software * it under the terms of the GNU General Public License as published by
* Foundation, either version 3 of the License, or (at your option) any later * the Free Software Foundation, either version 3 of the License, or
* version. * (at your option) any later version.
* *
* This program is distributed in the hope that it will be useful, but WITHOUT * This program is distributed in the hope that it will be useful,
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * but WITHOUT ANY WARRANTY; without even the implied warranty of
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* more details. * GNU General Public License for more details.
* *
* You should have received a copy of the GNU General Public License along with * You should have received a copy of the GNU General Public License
* this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
*
* @author Mike Gerwitz
*/ */
var common = require( './common' ), var common = require( './common' ),

View File

@ -5,20 +5,18 @@
* *
* This file is part of GNU ease.js. * This file is part of GNU ease.js.
* *
* ease.js is free software: you can redistribute it and/or modify it under the * ease.js is free software: you can redistribute it and/or modify
* terms of the GNU General Public License as published by the Free Software * it under the terms of the GNU General Public License as published by
* Foundation, either version 3 of the License, or (at your option) any later * the Free Software Foundation, either version 3 of the License, or
* version. * (at your option) any later version.
* *
* This program is distributed in the hope that it will be useful, but WITHOUT * This program is distributed in the hope that it will be useful,
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * but WITHOUT ANY WARRANTY; without even the implied warranty of
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* more details. * GNU General Public License for more details.
* *
* You should have received a copy of the GNU General Public License along with * You should have received a copy of the GNU General Public License
* this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
*
* @author Mike Gerwitz
*/ */
var common = require( './common' ), var common = require( './common' ),

View File

@ -4,18 +4,18 @@
# #
# This file is part of GNU ease.js. # This file is part of GNU ease.js.
# #
# ease.js is free software: you can redistribute it and/or modify it under the # ease.js is free software: you can redistribute it and/or modify it under
# terms of the GNU General Public License as published by the Free Software # the terms of the GNU General Public License as published by the Free
# Foundation, either version 3 of the License, or (at your option) any later # Software Foundation, either version 3 of the License, or (at your option)
# version. # any later version.
# #
# This program is distributed in the hope that it will be useful, but WITHOUT # This program is distributed in the hope that it will be useful, but
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS # WITHOUT ANY WARRANTY; without even the implied warranty of
# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
# details. # Public License for more details.
# #
# You should have received a copy of the GNU General Public License along with # You should have received a copy of the GNU General Public License along
# this program. If not, see <http://www.gnu.org/licenses/>. # with this program. If not, see <http://www.gnu.org/licenses/>.
# # # #
PATH_TOOLS=$( dirname "$0" )/../tools PATH_TOOLS=$( dirname "$0" )/../tools

View File

@ -5,20 +5,18 @@
* *
* This file is part of GNU ease.js. * This file is part of GNU ease.js.
* *
* ease.js is free software: you can redistribute it and/or modify it under the * ease.js is free software: you can redistribute it and/or modify
* terms of the GNU General Public License as published by the Free Software * it under the terms of the GNU General Public License as published by
* Foundation, either version 3 of the License, or (at your option) any later * the Free Software Foundation, either version 3 of the License, or
* version. * (at your option) any later version.
* *
* This program is distributed in the hope that it will be useful, but WITHOUT * This program is distributed in the hope that it will be useful,
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * but WITHOUT ANY WARRANTY; without even the implied warranty of
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* more details. * GNU General Public License for more details.
* *
* You should have received a copy of the GNU General Public License along with * You should have received a copy of the GNU General Public License
* this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
*
* @author Mike Gerwitz
*/ */
var common = require( './common' ), var common = require( './common' ),

View File

@ -5,20 +5,18 @@
* *
* This file is part of GNU ease.js. * This file is part of GNU ease.js.
* *
* ease.js is free software: you can redistribute it and/or modify it under the * ease.js is free software: you can redistribute it and/or modify
* terms of the GNU General Public License as published by the Free Software * it under the terms of the GNU General Public License as published by
* Foundation, either version 3 of the License, or (at your option) any later * the Free Software Foundation, either version 3 of the License, or
* version. * (at your option) any later version.
* *
* This program is distributed in the hope that it will be useful, but WITHOUT * This program is distributed in the hope that it will be useful,
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * but WITHOUT ANY WARRANTY; without even the implied warranty of
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* more details. * GNU General Public License for more details.
* *
* You should have received a copy of the GNU General Public License along with * You should have received a copy of the GNU General Public License
* this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
*
* @author Mike Gerwitz
*/ */
var common = require( './common' ), var common = require( './common' ),

View File

@ -5,20 +5,18 @@
* *
* This file is part of GNU ease.js. * This file is part of GNU ease.js.
* *
* ease.js is free software: you can redistribute it and/or modify it under the * ease.js is free software: you can redistribute it and/or modify
* terms of the GNU General Public License as published by the Free Software * it under the terms of the GNU General Public License as published by
* Foundation, either version 3 of the License, or (at your option) any later * the Free Software Foundation, either version 3 of the License, or
* version. * (at your option) any later version.
* *
* This program is distributed in the hope that it will be useful, but WITHOUT * This program is distributed in the hope that it will be useful,
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * but WITHOUT ANY WARRANTY; without even the implied warranty of
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* more details. * GNU General Public License for more details.
* *
* You should have received a copy of the GNU General Public License along with * You should have received a copy of the GNU General Public License
* this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
*
* @author Mike Gerwitz
*/ */
var common = require( './common' ), var common = require( './common' ),

View File

@ -5,20 +5,18 @@
* *
* This file is part of GNU ease.js. * This file is part of GNU ease.js.
* *
* ease.js is free software: you can redistribute it and/or modify it under the * ease.js is free software: you can redistribute it and/or modify
* terms of the GNU General Public License as published by the Free Software * it under the terms of the GNU General Public License as published by
* Foundation, either version 3 of the License, or (at your option) any later * the Free Software Foundation, either version 3 of the License, or
* version. * (at your option) any later version.
* *
* This program is distributed in the hope that it will be useful, but WITHOUT * This program is distributed in the hope that it will be useful,
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * but WITHOUT ANY WARRANTY; without even the implied warranty of
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* more details. * GNU General Public License for more details.
* *
* You should have received a copy of the GNU General Public License along with * You should have received a copy of the GNU General Public License
* this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
*
* @author Mike Gerwitz
*/ */
var common = require( './common' ), var common = require( './common' ),

View File

@ -5,20 +5,18 @@
* *
* This file is part of GNU ease.js. * This file is part of GNU ease.js.
* *
* ease.js is free software: you can redistribute it and/or modify it under the * ease.js is free software: you can redistribute it and/or modify
* terms of the GNU General Public License as published by the Free Software * it under the terms of the GNU General Public License as published by
* Foundation, either version 3 of the License, or (at your option) any later * the Free Software Foundation, either version 3 of the License, or
* version. * (at your option) any later version.
* *
* This program is distributed in the hope that it will be useful, but WITHOUT * This program is distributed in the hope that it will be useful,
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * but WITHOUT ANY WARRANTY; without even the implied warranty of
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* more details. * GNU General Public License for more details.
* *
* You should have received a copy of the GNU General Public License along with * You should have received a copy of the GNU General Public License
* this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
*
* @author Mike Gerwitz
*/ */
var common = require( './common' ), var common = require( './common' ),

View File

@ -5,20 +5,18 @@
* *
* This file is part of GNU ease.js. * This file is part of GNU ease.js.
* *
* ease.js is free software: you can redistribute it and/or modify it under the * ease.js is free software: you can redistribute it and/or modify
* terms of the GNU General Public License as published by the Free Software * it under the terms of the GNU General Public License as published by
* Foundation, either version 3 of the License, or (at your option) any later * the Free Software Foundation, either version 3 of the License, or
* version. * (at your option) any later version.
* *
* This program is distributed in the hope that it will be useful, but WITHOUT * This program is distributed in the hope that it will be useful,
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * but WITHOUT ANY WARRANTY; without even the implied warranty of
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* more details. * GNU General Public License for more details.
* *
* You should have received a copy of the GNU General Public License along with * You should have received a copy of the GNU General Public License
* this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
*
* @author Mike Gerwitz
*/ */
var common = require( './common' ), var common = require( './common' ),

View File

@ -5,20 +5,18 @@
* *
* This file is part of GNU ease.js. * This file is part of GNU ease.js.
* *
* ease.js is free software: you can redistribute it and/or modify it under the * ease.js is free software: you can redistribute it and/or modify
* terms of the GNU General Public License as published by the Free Software * it under the terms of the GNU General Public License as published by
* Foundation, either version 3 of the License, or (at your option) any later * the Free Software Foundation, either version 3 of the License, or
* version. * (at your option) any later version.
* *
* This program is distributed in the hope that it will be useful, but WITHOUT * This program is distributed in the hope that it will be useful,
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * but WITHOUT ANY WARRANTY; without even the implied warranty of
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* more details. * GNU General Public License for more details.
* *
* You should have received a copy of the GNU General Public License along with * You should have received a copy of the GNU General Public License
* this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
*
* @author Mike Gerwitz
*/ */
var common = require( './common' ), var common = require( './common' ),

View File

@ -5,20 +5,18 @@
* *
* This file is part of GNU ease.js. * This file is part of GNU ease.js.
* *
* ease.js is free software: you can redistribute it and/or modify it under the * ease.js is free software: you can redistribute it and/or modify
* terms of the GNU General Public License as published by the Free Software * it under the terms of the GNU General Public License as published by
* Foundation, either version 3 of the License, or (at your option) any later * the Free Software Foundation, either version 3 of the License, or
* version. * (at your option) any later version.
* *
* This program is distributed in the hope that it will be useful, but WITHOUT * This program is distributed in the hope that it will be useful,
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * but WITHOUT ANY WARRANTY; without even the implied warranty of
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* more details. * GNU General Public License for more details.
* *
* You should have received a copy of the GNU General Public License along with * You should have received a copy of the GNU General Public License
* this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
*
* @author Mike Gerwitz
*/ */
var common = require( './common' ), var common = require( './common' ),

View File

@ -5,20 +5,18 @@
* *
* This file is part of GNU ease.js. * This file is part of GNU ease.js.
* *
* ease.js is free software: you can redistribute it and/or modify it under the * ease.js is free software: you can redistribute it and/or modify
* terms of the GNU General Public License as published by the Free Software * it under the terms of the GNU General Public License as published by
* Foundation, either version 3 of the License, or (at your option) any later * the Free Software Foundation, either version 3 of the License, or
* version. * (at your option) any later version.
* *
* This program is distributed in the hope that it will be useful, but WITHOUT * This program is distributed in the hope that it will be useful,
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * but WITHOUT ANY WARRANTY; without even the implied warranty of
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* more details. * GNU General Public License for more details.
* *
* You should have received a copy of the GNU General Public License along with * You should have received a copy of the GNU General Public License
* this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
*
* @author Mike Gerwitz
*/ */
var common = require( './common' ), var common = require( './common' ),

View File

@ -5,20 +5,18 @@
* *
* This file is part of GNU ease.js. * This file is part of GNU ease.js.
* *
* ease.js is free software: you can redistribute it and/or modify it under the * ease.js is free software: you can redistribute it and/or modify
* terms of the GNU General Public License as published by the Free Software * it under the terms of the GNU General Public License as published by
* Foundation, either version 3 of the License, or (at your option) any later * the Free Software Foundation, either version 3 of the License, or
* version. * (at your option) any later version.
* *
* This program is distributed in the hope that it will be useful, but WITHOUT * This program is distributed in the hope that it will be useful,
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * but WITHOUT ANY WARRANTY; without even the implied warranty of
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* more details. * GNU General Public License for more details.
* *
* You should have received a copy of the GNU General Public License along with * You should have received a copy of the GNU General Public License
* this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
*
* @author Mike Gerwitz
*/ */
var common = require( './common' ), var common = require( './common' ),

View File

@ -1,8 +1,8 @@
/** /**
* Determines dependency order * Determines dependency order
* *
* This script will determine the order in which files must be concatenated in * This script will determine the order in which files must be concatenated
* order to run properly. Dependencies must be added before the file that * in order to run properly. Dependencies must be added before the file that
* depends on them. * depends on them.
* *
* Circular dependencies are not supported, nor should they be. * Circular dependencies are not supported, nor should they be.
@ -11,18 +11,18 @@
* *
* This file is part of GNU ease.js. * This file is part of GNU ease.js.
* *
* ease.js is free software: you can redistribute it and/or modify it under the * ease.js is free software: you can redistribute it and/or modify it under
* terms of the GNU General Public License as published by the Free Software * the terms of the GNU General Public License as published by the Free
* Foundation, either version 3 of the License, or (at your option) any later * Software Foundation, either version 3 of the License, or (at your
* version. * option) any later version.
* *
* This program is distributed in the hope that it will be useful, but WITHOUT * This program is distributed in the hope that it will be useful, but
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * WITHOUT ANY WARRANTY; without even the implied warranty of
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* more details. * General Public License for more details.
* *
* You should have received a copy of the GNU General Public License along with * You should have received a copy of the GNU General Public License along
* this program. If not, see <http://www.gnu.org/licenses/>. * with this program. If not, see <http://www.gnu.org/licenses/>.
* *
* @author Mike Gerwitz * @author Mike Gerwitz
*/ */

View File

@ -4,18 +4,18 @@
# #
# This file is part of GNU ease.js. # This file is part of GNU ease.js.
# #
# ease.js is free software: you can redistribute it and/or modify it under the # ease.js is free software: you can redistribute it and/or modify it under
# terms of the GNU General Public License as published by the Free Software # the terms of the GNU General Public License as published by the Free
# Foundation, either version 3 of the License, or (at your option) any later # Software Foundation, either version 3 of the License, or (at your option)
# version. # any later version.
# #
# This program is distributed in the hope that it will be useful, but WITHOUT # This program is distributed in the hope that it will be useful, but
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS # WITHOUT ANY WARRANTY; without even the implied warranty of
# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
# details. # Public License for more details.
# #
# You should have received a copy of the GNU General Public License along with # You should have received a copy of the GNU General Public License along
# this program. If not, see <http://www.gnu.org/licenses/>. # with this program. If not, see <http://www.gnu.org/licenses/>.
# # # #
module.common = module['test/common'] = { exports: { module.common = module['test/common'] = { exports: {

View File

@ -18,13 +18,13 @@
# You should have received a copy of the GNU General Public License # You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>. # along with this program. If not, see <http://www.gnu.org/licenses/>.
# #
# Please note that this file will update itself. Further, it will only update # Please note that this file will update itself. Further, it will only
# files that state ``this file is part of ease.js''. # update files that state ``this file is part of ease.js''.
# #
# This script will look up the modification dates from the file commits and # This script will look up the modification dates from the file commits and
# update the copyright line accordingly. Since the history must not include the # update the copyright line accordingly. Since the history must not include
# copyright update itself, this script will also perform the commit (feel free # the copyright update itself, this script will also perform the commit
# to amend afterward) to ensure consistency in future filtering. # (feel free to amend afterward) to ensure consistency in future filtering.
# #
# This should be run from the tools directory. # This should be run from the tools directory.
## ##

View File

@ -1,9 +1,9 @@
#!/bin/bash #!/bin/bash
# #
# Because this project consists of a bunch of CommonJS modules, the constructors # Because this project consists of a bunch of CommonJS modules, the
# have restricted scope. This means that they cannot be used as types in other # constructors have restricted scope. This means that they cannot be used as
# modules. Therefore, to permit this, we must generate an extern file containing # types in other modules. Therefore, to permit this, we must generate an
# basic definitions of each. # extern file containing basic definitions of each.
# #
# Copyright (C) 2011, 2012, 2013 Mike Gerwitz # Copyright (C) 2011, 2012, 2013 Mike Gerwitz
# #

View File

@ -1,13 +1,14 @@
#!/bin/sh #!/bin/sh
# #
# Removes trailing commas from array and object declarations (certain browsers, # Removes trailing commas from array and object declarations (certain
# such as earlier versions of IE, do not parse trailing commas correctly) # browsers, such as earlier versions of IE, do not parse trailing commas
# correctly)
# #
# This is a very simple (dumb) system. It does not check to ensure we're not # This is a very simple (dumb) system. It does not check to ensure we're not
# replacing text inside a string, nor is it 100% certain we're in an array or # replacing text inside a string, nor is it 100% certain we're in an array
# object declaration. However, until such an implementation is needed, I'd like # or object declaration. However, until such an implementation is needed,
# to keep it as simple (and fast) as possible. The below implementation is # I'd like to keep it as simple (and fast) as possible. The below
# suitable for our needs. # implementation is suitable for our needs.
# #
# Copyright (C) 2010, 2011, 2012, 2013 Mike Gerwitz # Copyright (C) 2010, 2011, 2012, 2013 Mike Gerwitz
# #

View File

@ -1,6 +1,7 @@
#!/bin/bash #!/bin/bash
# #
# Lists all commits after a given commit that do not have a trusted signature # Lists all commits after a given commit that do not have a trusted
# signature
# #
# Allows for automated detection of potential attacks or false authorship of # Allows for automated detection of potential attacks or false authorship of
# commits by validating signatures against trusted public GPG keys. # commits by validating signatures against trusted public GPG keys.