From 13ca9cd852a31a47774a66cefe0f5c7d57ff4fc7 Mon Sep 17 00:00:00 2001 From: Mike Gerwitz Date: Fri, 20 Dec 2013 01:11:26 -0500 Subject: [PATCH] [copyright] Copyright update after relicensing --- index.js | 2 +- lib/FallbackMemberBuilder.js | 2 +- lib/FallbackVisibilityObjectFactory.js | 2 +- lib/MethodWrapperFactory.js | 2 +- lib/VisibilityObjectFactory.js | 2 +- lib/VisibilityObjectFactoryFactory.js | 2 +- lib/class.js | 2 +- lib/class_abstract.js | 2 +- lib/class_final.js | 2 +- lib/prop_parser.js | 2 +- lib/version.js | 2 +- lib/warn.js | 2 +- test/FallbackMemberBuilderTest.js | 2 +- test/FallbackVisibilityObjectFactoryTest.js | 2 +- test/Interface/ExtendTest.js | 2 +- test/Interface/GeneralTest.js | 2 +- test/MemberBuilder/GetterSetterTest.js | 2 +- test/MemberBuilder/MethodTest.js | 2 +- test/MemberBuilder/PropTest.js | 2 +- test/MemberBuilder/VisibilityTest.js | 2 +- test/MemberBuilder/inc-common.js | 2 +- test/MemberBuilderValidator/GetterSetterTest.js | 2 +- test/MemberBuilderValidator/MethodTest.js | 2 +- test/MemberBuilderValidator/PropertyTest.js | 2 +- test/MemberBuilderValidator/inc-common.js | 2 +- test/MethodWrapperFactoryTest.js | 2 +- test/MethodWrappersTest.js | 2 +- test/VersionTest.js | 2 +- test/VisibilityObjectFactoryFactoryTest.js | 2 +- test/VisibilityObjectFactoryTest.js | 2 +- test/common.js | 2 +- test/inc-testcase.js | 2 +- test/perf/common.js | 2 +- test/perf/perf-class-define-methods-keyword-private.js | 2 +- test/perf/perf-class-define-methods-keyword-protected.js | 2 +- test/perf/perf-class-define-methods-keyword-public.js | 2 +- test/perf/perf-class-define-methods.js | 2 +- test/perf/perf-class-define-named.js | 2 +- test/perf/perf-class-define-properties-keyword-private.js | 2 +- test/perf/perf-class-define-properties-keyword-protected.js | 2 +- test/perf/perf-class-define-properties-keyword-public.js | 2 +- test/perf/perf-class-define-properties.js | 2 +- test/perf/perf-class-define.js | 2 +- test/perf/perf-class-get-property.js | 2 +- test/perf/perf-class-inst-anon-empty.js | 2 +- test/perf/perf-class-inst-named-empty.js | 2 +- test/perf/perf-class-invoke-method.js | 2 +- test/perf/perf-class-require.js | 2 +- test/perf/perf-class-set-property.js | 2 +- test/runner.js | 2 +- test/test-class-abstract.js | 2 +- test/test-class-constructor.js | 2 +- test/test-class-extend.js | 2 +- test/test-class-implement.js | 2 +- test/test-class-name.js | 2 +- test/test-class-visibility.js | 2 +- test/test-class.js | 2 +- test/test-class_builder-const.js | 2 +- test/test-class_builder-final.js | 2 +- test/test-class_builder-member-restrictions.js | 2 +- test/test-class_builder-static.js | 2 +- test/test-class_builder-visibility.js | 2 +- test/test-combine-pre-es5.js | 2 +- test/test-combine.js | 2 +- test/test-index.js | 2 +- test/test-interface-name.js | 2 +- test/test-prop_parser-parse-keywords.js | 2 +- test/test-rmtrail | 2 +- test/test-util-abstract.js | 2 +- test/test-util-clone.js | 2 +- test/test-util-copy.js | 2 +- test/test-util-define-secure-prop.js | 2 +- test/test-util-get-property-descriptor.js | 2 +- test/test-util-prop-parse-keywords.js | 2 +- test/test-warn-exception.js | 2 +- test/test-warn-handlers.js | 2 +- test/test-warn-impl.js | 2 +- tools/combine-order.js | 2 +- tools/combine-test.tpl | 2 +- tools/license.tpl | 2 +- tools/version.js.tpl | 2 +- 81 files changed, 81 insertions(+), 81 deletions(-) diff --git a/index.js b/index.js index 24fd25d..4648307 100644 --- a/index.js +++ b/index.js @@ -1,7 +1,7 @@ /** * Provides ease of access to all submodules * - * Copyright (C) 2010, 2011 Mike Gerwitz + * Copyright (C) 2010, 2011, 2013 Mike Gerwitz * * This file is part of ease.js. * diff --git a/lib/FallbackMemberBuilder.js b/lib/FallbackMemberBuilder.js index 32b3208..d971dff 100644 --- a/lib/FallbackMemberBuilder.js +++ b/lib/FallbackMemberBuilder.js @@ -1,7 +1,7 @@ /** * Handles building members (properties, methods) in a pre-ES5 environment * - * Copyright (C) 2011 Mike Gerwitz + * Copyright (C) 2011, 2013 Mike Gerwitz * * This file is part of ease.js. * diff --git a/lib/FallbackVisibilityObjectFactory.js b/lib/FallbackVisibilityObjectFactory.js index 33ee060..244618d 100644 --- a/lib/FallbackVisibilityObjectFactory.js +++ b/lib/FallbackVisibilityObjectFactory.js @@ -1,7 +1,7 @@ /** * Contains fallback visibility object factory * - * Copyright (C) 2011 Mike Gerwitz + * Copyright (C) 2011, 2013 Mike Gerwitz * * This file is part of ease.js. * diff --git a/lib/MethodWrapperFactory.js b/lib/MethodWrapperFactory.js index ed39c21..5c227e2 100644 --- a/lib/MethodWrapperFactory.js +++ b/lib/MethodWrapperFactory.js @@ -1,7 +1,7 @@ /** * Builds method wrappers * - * Copyright (C) 2011, 2012 Mike Gerwitz + * Copyright (C) 2011, 2012, 2013 Mike Gerwitz * * This file is part of ease.js. * diff --git a/lib/VisibilityObjectFactory.js b/lib/VisibilityObjectFactory.js index 7d13ec4..f2ca95a 100644 --- a/lib/VisibilityObjectFactory.js +++ b/lib/VisibilityObjectFactory.js @@ -1,7 +1,7 @@ /** * Contains visibility object factory * - * Copyright (C) 2011 Mike Gerwitz + * Copyright (C) 2011, 2013 Mike Gerwitz * * This file is part of ease.js. * diff --git a/lib/VisibilityObjectFactoryFactory.js b/lib/VisibilityObjectFactoryFactory.js index 72e49e6..3a66022 100644 --- a/lib/VisibilityObjectFactoryFactory.js +++ b/lib/VisibilityObjectFactoryFactory.js @@ -1,7 +1,7 @@ /** * Contains factory for visibility object factory * - * Copyright (C) 2011 Mike Gerwitz + * Copyright (C) 2011, 2013 Mike Gerwitz * * This file is part of ease.js. * diff --git a/lib/class.js b/lib/class.js index d8deb71..81f7bd2 100644 --- a/lib/class.js +++ b/lib/class.js @@ -1,7 +1,7 @@ /** * Contains basic inheritance mechanism * - * Copyright (C) 2010, 2011, 2012 Mike Gerwitz + * Copyright (C) 2010, 2011, 2012, 2013 Mike Gerwitz * * This file is part of ease.js. * diff --git a/lib/class_abstract.js b/lib/class_abstract.js index d13aff8..6b41cd9 100644 --- a/lib/class_abstract.js +++ b/lib/class_abstract.js @@ -5,7 +5,7 @@ * to allow abstract methods within a class, forcing users to clearly state * that a class is abstract. * - * Copyright (C) 2011 Mike Gerwitz + * Copyright (C) 2011, 2013 Mike Gerwitz * * This file is part of ease.js. * diff --git a/lib/class_final.js b/lib/class_final.js index 4710241..ac69a43 100644 --- a/lib/class_final.js +++ b/lib/class_final.js @@ -1,7 +1,7 @@ /** * Wrapper permitting the definition of final classes * - * Copyright (C) 2011 Mike Gerwitz + * Copyright (C) 2011, 2013 Mike Gerwitz * * This file is part of ease.js. * diff --git a/lib/prop_parser.js b/lib/prop_parser.js index 7ec2697..54e6110 100644 --- a/lib/prop_parser.js +++ b/lib/prop_parser.js @@ -1,7 +1,7 @@ /** * Property keyword parser module * - * Copyright (C) 2010, 2011, 2012 Mike Gerwitz + * Copyright (C) 2010, 2011, 2012, 2013 Mike Gerwitz * * This file is part of ease.js. * diff --git a/lib/version.js b/lib/version.js index 7b0b44a..e86cb1a 100644 --- a/lib/version.js +++ b/lib/version.js @@ -1,7 +1,7 @@ /** * Provides version information * - * Copyright (C) 2011, 2012 Mike Gerwitz + * Copyright (C) 2011, 2012, 2013 Mike Gerwitz * * This file is part of ease.js. * diff --git a/lib/warn.js b/lib/warn.js index 5a53e4e..7309be4 100644 --- a/lib/warn.js +++ b/lib/warn.js @@ -1,7 +1,7 @@ /** * ease.js warning system * - * Copyright (C) 2011, 2012 Mike Gerwitz + * Copyright (C) 2011, 2012, 2013 Mike Gerwitz * * This file is part of ease.js. * diff --git a/test/FallbackMemberBuilderTest.js b/test/FallbackMemberBuilderTest.js index 288eb4e..14526d2 100644 --- a/test/FallbackMemberBuilderTest.js +++ b/test/FallbackMemberBuilderTest.js @@ -3,7 +3,7 @@ * * Note that this test case can also be run in an ES5 environment. * - * Copyright (C) 2011 Mike Gerwitz + * Copyright (C) 2011, 2013 Mike Gerwitz * * This file is part of ease.js. * diff --git a/test/FallbackVisibilityObjectFactoryTest.js b/test/FallbackVisibilityObjectFactoryTest.js index 5ac1983..95e1940 100644 --- a/test/FallbackVisibilityObjectFactoryTest.js +++ b/test/FallbackVisibilityObjectFactoryTest.js @@ -1,7 +1,7 @@ /** * Tests fallback visibility object factory * - * Copyright (C) 2011, 2012 Mike Gerwitz + * Copyright (C) 2011, 2012, 2013 Mike Gerwitz * * This file is part of ease.js. * diff --git a/test/Interface/ExtendTest.js b/test/Interface/ExtendTest.js index 4347c28..769ec83 100644 --- a/test/Interface/ExtendTest.js +++ b/test/Interface/ExtendTest.js @@ -1,7 +1,7 @@ /** * Tests extending of interfaces * - * Copyright (C) 2011 Mike Gerwitz + * Copyright (C) 2011, 2013 Mike Gerwitz * * This file is part of ease.js. * diff --git a/test/Interface/GeneralTest.js b/test/Interface/GeneralTest.js index 4b6ddb3..b4f8f53 100644 --- a/test/Interface/GeneralTest.js +++ b/test/Interface/GeneralTest.js @@ -1,7 +1,7 @@ /** * Tests interfaces * - * Copyright (C) 2011 Mike Gerwitz + * Copyright (C) 2011, 2013 Mike Gerwitz * * This file is part of ease.js. * diff --git a/test/MemberBuilder/GetterSetterTest.js b/test/MemberBuilder/GetterSetterTest.js index 073e5e0..0394c99 100644 --- a/test/MemberBuilder/GetterSetterTest.js +++ b/test/MemberBuilder/GetterSetterTest.js @@ -1,7 +1,7 @@ /** * Tests MemberBuilder getter/setter builder * - * Copyright (C) 2011, 2012 Mike Gerwitz + * Copyright (C) 2011, 2012, 2013 Mike Gerwitz * * This file is part of ease.js. * diff --git a/test/MemberBuilder/MethodTest.js b/test/MemberBuilder/MethodTest.js index 9fcddb8..13fb7bc 100644 --- a/test/MemberBuilder/MethodTest.js +++ b/test/MemberBuilder/MethodTest.js @@ -1,7 +1,7 @@ /** * Tests method builder * - * Copyright (C) 2011, 2012 Mike Gerwitz + * Copyright (C) 2011, 2012, 2013 Mike Gerwitz * * This file is part of ease.js. * diff --git a/test/MemberBuilder/PropTest.js b/test/MemberBuilder/PropTest.js index a6ed382..7a2a96a 100644 --- a/test/MemberBuilder/PropTest.js +++ b/test/MemberBuilder/PropTest.js @@ -1,7 +1,7 @@ /** * Tests MemberBuilder property builder * - * Copyright (C) 2011, 2012 Mike Gerwitz + * Copyright (C) 2011, 2012, 2013 Mike Gerwitz * * This file is part of ease.js. * diff --git a/test/MemberBuilder/VisibilityTest.js b/test/MemberBuilder/VisibilityTest.js index 15d76c0..3becdef 100644 --- a/test/MemberBuilder/VisibilityTest.js +++ b/test/MemberBuilder/VisibilityTest.js @@ -1,7 +1,7 @@ /** * Tests visibility portion of member builder * - * Copyright (C) 2011, 2012 Mike Gerwitz + * Copyright (C) 2011, 2012, 2013 Mike Gerwitz * * This file is part of ease.js. * diff --git a/test/MemberBuilder/inc-common.js b/test/MemberBuilder/inc-common.js index 7c2bf62..6343c43 100644 --- a/test/MemberBuilder/inc-common.js +++ b/test/MemberBuilder/inc-common.js @@ -1,7 +1,7 @@ /** * Shared functions for MemberBuilder tests * - * Copyright (C) 2011 Mike Gerwitz + * Copyright (C) 2011, 2013 Mike Gerwitz * * This file is part of ease.js. * diff --git a/test/MemberBuilderValidator/GetterSetterTest.js b/test/MemberBuilderValidator/GetterSetterTest.js index c524dc3..11c7ef8 100644 --- a/test/MemberBuilderValidator/GetterSetterTest.js +++ b/test/MemberBuilderValidator/GetterSetterTest.js @@ -4,7 +4,7 @@ * These tests can be run in a pre-ES5 environment since they do not deal with * actual getters/setters; they deal only with the data associated with them. * - * Copyright (C) 2011 Mike Gerwitz + * Copyright (C) 2011, 2013 Mike Gerwitz * * This file is part of ease.js. * diff --git a/test/MemberBuilderValidator/MethodTest.js b/test/MemberBuilderValidator/MethodTest.js index 3c8c842..9a51a6a 100644 --- a/test/MemberBuilderValidator/MethodTest.js +++ b/test/MemberBuilderValidator/MethodTest.js @@ -1,7 +1,7 @@ /** * Tests member builder validation rules * - * Copyright (C) 2011, 2012 Mike Gerwitz + * Copyright (C) 2011, 2012, 2013 Mike Gerwitz * * This file is part of ease.js. * diff --git a/test/MemberBuilderValidator/PropertyTest.js b/test/MemberBuilderValidator/PropertyTest.js index 1f376bf..148ad49 100644 --- a/test/MemberBuilderValidator/PropertyTest.js +++ b/test/MemberBuilderValidator/PropertyTest.js @@ -1,7 +1,7 @@ /** * Tests member builder validation rules * - * Copyright (C) 2011 Mike Gerwitz + * Copyright (C) 2011, 2013 Mike Gerwitz * * This file is part of ease.js. * diff --git a/test/MemberBuilderValidator/inc-common.js b/test/MemberBuilderValidator/inc-common.js index 07f84f4..430842d 100644 --- a/test/MemberBuilderValidator/inc-common.js +++ b/test/MemberBuilderValidator/inc-common.js @@ -1,7 +1,7 @@ /** * Shared functions for MemberBuilderValidator tests * - * Copyright (C) 2011, 2012 Mike Gerwitz + * Copyright (C) 2011, 2012, 2013 Mike Gerwitz * * This file is part of ease.js. * diff --git a/test/MethodWrapperFactoryTest.js b/test/MethodWrapperFactoryTest.js index 9fc03ef..ae3237b 100644 --- a/test/MethodWrapperFactoryTest.js +++ b/test/MethodWrapperFactoryTest.js @@ -1,7 +1,7 @@ /** * Tests MethodWrapperFactory prototype * - * Copyright (C) 2011, 2012 Mike Gerwitz + * Copyright (C) 2011, 2012, 2013 Mike Gerwitz * * This file is part of ease.js. * diff --git a/test/MethodWrappersTest.js b/test/MethodWrappersTest.js index 3b38bd1..7fcf772 100644 --- a/test/MethodWrappersTest.js +++ b/test/MethodWrappersTest.js @@ -1,7 +1,7 @@ /** * Tests method sut * - * Copyright (C) 2011, 2012 Mike Gerwitz + * Copyright (C) 2011, 2012, 2013 Mike Gerwitz * * This file is part of ease.js. * diff --git a/test/VersionTest.js b/test/VersionTest.js index 61c206e..930d92e 100644 --- a/test/VersionTest.js +++ b/test/VersionTest.js @@ -1,7 +1,7 @@ /** * Tests version.js * - * Copyright (C) 2011, 2012 Mike Gerwitz + * Copyright (C) 2011, 2012, 2013 Mike Gerwitz * * This file is part of ease.js. * diff --git a/test/VisibilityObjectFactoryFactoryTest.js b/test/VisibilityObjectFactoryFactoryTest.js index c7b25de..9b79265 100644 --- a/test/VisibilityObjectFactoryFactoryTest.js +++ b/test/VisibilityObjectFactoryFactoryTest.js @@ -1,7 +1,7 @@ /** * Tests factory for visibility object factory * - * Copyright (C) 2011, 2012 Mike Gerwitz + * Copyright (C) 2011, 2012, 2013 Mike Gerwitz * * This file is part of ease.js. * diff --git a/test/VisibilityObjectFactoryTest.js b/test/VisibilityObjectFactoryTest.js index fcb741d..2ccf3f5 100644 --- a/test/VisibilityObjectFactoryTest.js +++ b/test/VisibilityObjectFactoryTest.js @@ -1,7 +1,7 @@ /** * Tests visibility object factory * - * Copyright (C) 2011, 2012 Mike Gerwitz + * Copyright (C) 2011, 2012, 2013 Mike Gerwitz * * This file is part of ease.js. * diff --git a/test/common.js b/test/common.js index 9cc493d..1dc84ee 100644 --- a/test/common.js +++ b/test/common.js @@ -1,7 +1,7 @@ /** * Common paths for testing * - * Copyright (C) 2010, 2011 Mike Gerwitz + * Copyright (C) 2010, 2011, 2013 Mike Gerwitz * * This file is part of ease.js. * diff --git a/test/inc-testcase.js b/test/inc-testcase.js index e5308e2..626e3a8 100644 --- a/test/inc-testcase.js +++ b/test/inc-testcase.js @@ -1,7 +1,7 @@ /** * Simple X-Unit-style test cases * - * Copyright (C) 2011, 2012 Mike Gerwitz + * Copyright (C) 2011, 2012, 2013 Mike Gerwitz * * This file is part of ease.js. * diff --git a/test/perf/common.js b/test/perf/common.js index cd2702b..aa1d0bc 100644 --- a/test/perf/common.js +++ b/test/perf/common.js @@ -1,7 +1,7 @@ /** * Common performance testing functionality * - * Copyright (C) 2011 Mike Gerwitz + * Copyright (C) 2011, 2013 Mike Gerwitz * * This file is part of ease.js. * diff --git a/test/perf/perf-class-define-methods-keyword-private.js b/test/perf/perf-class-define-methods-keyword-private.js index c755c67..48c7d4f 100644 --- a/test/perf/perf-class-define-methods-keyword-private.js +++ b/test/perf/perf-class-define-methods-keyword-private.js @@ -2,7 +2,7 @@ * Tests amount of time taken to declare 1000 classes with a few members, * private keyword * - * Copyright (C) 2011 Mike Gerwitz + * Copyright (C) 2011, 2013 Mike Gerwitz * * This file is part of ease.js. * diff --git a/test/perf/perf-class-define-methods-keyword-protected.js b/test/perf/perf-class-define-methods-keyword-protected.js index 8595660..091cba1 100644 --- a/test/perf/perf-class-define-methods-keyword-protected.js +++ b/test/perf/perf-class-define-methods-keyword-protected.js @@ -2,7 +2,7 @@ * Tests amount of time taken to declare 1000 classes with a few members, * protected keyword * - * Copyright (C) 2011 Mike Gerwitz + * Copyright (C) 2011, 2013 Mike Gerwitz * * This file is part of ease.js. * diff --git a/test/perf/perf-class-define-methods-keyword-public.js b/test/perf/perf-class-define-methods-keyword-public.js index 6ebf74e..84947ad 100644 --- a/test/perf/perf-class-define-methods-keyword-public.js +++ b/test/perf/perf-class-define-methods-keyword-public.js @@ -2,7 +2,7 @@ * Tests amount of time taken to declare 1000 classes with a few members, public * keyword * - * Copyright (C) 2011 Mike Gerwitz + * Copyright (C) 2011, 2013 Mike Gerwitz * * This file is part of ease.js. * diff --git a/test/perf/perf-class-define-methods.js b/test/perf/perf-class-define-methods.js index 3358bac..9f5e8bc 100644 --- a/test/perf/perf-class-define-methods.js +++ b/test/perf/perf-class-define-methods.js @@ -2,7 +2,7 @@ * Tests amount of time taken to declare 1000 classes with a few members, no * keywords * - * Copyright (C) 2011 Mike Gerwitz + * Copyright (C) 2011, 2013 Mike Gerwitz * * This file is part of ease.js. * diff --git a/test/perf/perf-class-define-named.js b/test/perf/perf-class-define-named.js index add7495..b80908b 100644 --- a/test/perf/perf-class-define-named.js +++ b/test/perf/perf-class-define-named.js @@ -1,7 +1,7 @@ /** * Tests amount of time taken to declare 1000 classes * - * Copyright (C) 2011 Mike Gerwitz + * Copyright (C) 2011, 2013 Mike Gerwitz * * This file is part of ease.js. * diff --git a/test/perf/perf-class-define-properties-keyword-private.js b/test/perf/perf-class-define-properties-keyword-private.js index 79db92e..c274f29 100644 --- a/test/perf/perf-class-define-properties-keyword-private.js +++ b/test/perf/perf-class-define-properties-keyword-private.js @@ -2,7 +2,7 @@ * Tests amount of time taken to declare 1000 classes with a few properties, * private keyword * - * Copyright (C) 2011 Mike Gerwitz + * Copyright (C) 2011, 2013 Mike Gerwitz * * This file is part of ease.js. * diff --git a/test/perf/perf-class-define-properties-keyword-protected.js b/test/perf/perf-class-define-properties-keyword-protected.js index a7c8b74..5e0a99f 100644 --- a/test/perf/perf-class-define-properties-keyword-protected.js +++ b/test/perf/perf-class-define-properties-keyword-protected.js @@ -2,7 +2,7 @@ * Tests amount of time taken to declare 1000 classes with a few properties, * protected keyword * - * Copyright (C) 2011 Mike Gerwitz + * Copyright (C) 2011, 2013 Mike Gerwitz * * This file is part of ease.js. * diff --git a/test/perf/perf-class-define-properties-keyword-public.js b/test/perf/perf-class-define-properties-keyword-public.js index 9e395f0..a894dc2 100644 --- a/test/perf/perf-class-define-properties-keyword-public.js +++ b/test/perf/perf-class-define-properties-keyword-public.js @@ -2,7 +2,7 @@ * Tests amount of time taken to declare 1000 classes with a few properties, * public keyword * - * Copyright (C) 2011 Mike Gerwitz + * Copyright (C) 2011, 2013 Mike Gerwitz * * This file is part of ease.js. * diff --git a/test/perf/perf-class-define-properties.js b/test/perf/perf-class-define-properties.js index da4daa2..60ec396 100644 --- a/test/perf/perf-class-define-properties.js +++ b/test/perf/perf-class-define-properties.js @@ -2,7 +2,7 @@ * Tests amount of time taken to declare 1000 classes with few properties, no * keywords * - * Copyright (C) 2011 Mike Gerwitz + * Copyright (C) 2011, 2013 Mike Gerwitz * * This file is part of ease.js. * diff --git a/test/perf/perf-class-define.js b/test/perf/perf-class-define.js index f5f5814..1cc808f 100644 --- a/test/perf/perf-class-define.js +++ b/test/perf/perf-class-define.js @@ -1,7 +1,7 @@ /** * Tests amount of time taken to declare 1000 classes * - * Copyright (C) 2011 Mike Gerwitz + * Copyright (C) 2011, 2013 Mike Gerwitz * * This file is part of ease.js. * diff --git a/test/perf/perf-class-get-property.js b/test/perf/perf-class-get-property.js index 2edb55e..8f4ce2d 100644 --- a/test/perf/perf-class-get-property.js +++ b/test/perf/perf-class-get-property.js @@ -2,7 +2,7 @@ * Tests amount of time taken to declare read properties internally and * externally * - * Copyright (C) 2011 Mike Gerwitz + * Copyright (C) 2011, 2013 Mike Gerwitz * * This file is part of ease.js. * diff --git a/test/perf/perf-class-inst-anon-empty.js b/test/perf/perf-class-inst-anon-empty.js index 3c3d55e..e3b37d0 100644 --- a/test/perf/perf-class-inst-anon-empty.js +++ b/test/perf/perf-class-inst-anon-empty.js @@ -1,7 +1,7 @@ /** * Tests amount of time taken to instantiate anonymous classes * - * Copyright (C) 2011 Mike Gerwitz + * Copyright (C) 2011, 2013 Mike Gerwitz * * This file is part of ease.js. * diff --git a/test/perf/perf-class-inst-named-empty.js b/test/perf/perf-class-inst-named-empty.js index 183511b..e2dc2b6 100644 --- a/test/perf/perf-class-inst-named-empty.js +++ b/test/perf/perf-class-inst-named-empty.js @@ -1,7 +1,7 @@ /** * Tests amount of time taken to instantiate named classes * - * Copyright (C) 2011 Mike Gerwitz + * Copyright (C) 2011, 2013 Mike Gerwitz * * This file is part of ease.js. * diff --git a/test/perf/perf-class-invoke-method.js b/test/perf/perf-class-invoke-method.js index 6873aa6..7d87cea 100644 --- a/test/perf/perf-class-invoke-method.js +++ b/test/perf/perf-class-invoke-method.js @@ -18,7 +18,7 @@ * will remove this performance hit if the Class contains no private * members. * - * Copyright (C) 2011 Mike Gerwitz + * Copyright (C) 2011, 2013 Mike Gerwitz * * This file is part of ease.js. * diff --git a/test/perf/perf-class-require.js b/test/perf/perf-class-require.js index 34003cd..7ffdf84 100644 --- a/test/perf/perf-class-require.js +++ b/test/perf/perf-class-require.js @@ -1,7 +1,7 @@ /** * Tests amount of time spent on requiring class module * - * Copyright (C) 2011 Mike Gerwitz + * Copyright (C) 2011, 2013 Mike Gerwitz * * This file is part of ease.js. * diff --git a/test/perf/perf-class-set-property.js b/test/perf/perf-class-set-property.js index 2f96f01..2d14226 100644 --- a/test/perf/perf-class-set-property.js +++ b/test/perf/perf-class-set-property.js @@ -2,7 +2,7 @@ * Tests amount of time taken to declare read properties internally and * externally * - * Copyright (C) 2011 Mike Gerwitz + * Copyright (C) 2011, 2013 Mike Gerwitz * * This file is part of ease.js. * diff --git a/test/runner.js b/test/runner.js index 5dfc9bd..6ada9a1 100644 --- a/test/runner.js +++ b/test/runner.js @@ -4,7 +4,7 @@ * This script must be fed the tests to be run as arguments, one test case per * argument. All test cases should use common.testCase(). * - * Copyright (C) 2011 Mike Gerwitz + * Copyright (C) 2011, 2013 Mike Gerwitz * * This file is part of ease.js. * diff --git a/test/test-class-abstract.js b/test/test-class-abstract.js index c7d09c7..0225215 100644 --- a/test/test-class-abstract.js +++ b/test/test-class-abstract.js @@ -1,7 +1,7 @@ /** * Tests abstract classes * - * Copyright (C) 2010, 2011, 2012 Mike Gerwitz + * Copyright (C) 2010, 2011, 2012, 2013 Mike Gerwitz * * This file is part of ease.js. * diff --git a/test/test-class-constructor.js b/test/test-class-constructor.js index f49de5e..2f5f409 100644 --- a/test/test-class-constructor.js +++ b/test/test-class-constructor.js @@ -1,7 +1,7 @@ /** * Tests class module constructor creation * - * Copyright (C) 2010, 2011, 2012 Mike Gerwitz + * Copyright (C) 2010, 2011, 2012, 2013 Mike Gerwitz * * This file is part of ease.js. * diff --git a/test/test-class-extend.js b/test/test-class-extend.js index 7671d62..4397ef7 100644 --- a/test/test-class-extend.js +++ b/test/test-class-extend.js @@ -1,7 +1,7 @@ /** * Tests class module extend() method * - * Copyright (C) 2010, 2011 Mike Gerwitz + * Copyright (C) 2010, 2011, 2013 Mike Gerwitz * * This file is part of ease.js. * diff --git a/test/test-class-implement.js b/test/test-class-implement.js index d300eb0..f5bbb13 100644 --- a/test/test-class-implement.js +++ b/test/test-class-implement.js @@ -1,7 +1,7 @@ /** * Tests class interface implement method * - * Copyright (C) 2010, 2011 Mike Gerwitz + * Copyright (C) 2010, 2011, 2013 Mike Gerwitz * * This file is part of ease.js. * diff --git a/test/test-class-name.js b/test/test-class-name.js index 73c5da5..7e5d7b3 100644 --- a/test/test-class-name.js +++ b/test/test-class-name.js @@ -1,7 +1,7 @@ /** * Tests class naming * - * Copyright (C) 2011 Mike Gerwitz + * Copyright (C) 2011, 2013 Mike Gerwitz * * This file is part of ease.js. * diff --git a/test/test-class-visibility.js b/test/test-class-visibility.js index 77b49af..398fe3e 100644 --- a/test/test-class-visibility.js +++ b/test/test-class-visibility.js @@ -1,7 +1,7 @@ /** * Tests class member visibility (public, private, protected) * - * Copyright (C) 2011 Mike Gerwitz + * Copyright (C) 2011, 2013 Mike Gerwitz * * This file is part of ease.js. * diff --git a/test/test-class.js b/test/test-class.js index 381fa74..06187d5 100644 --- a/test/test-class.js +++ b/test/test-class.js @@ -1,7 +1,7 @@ /** * Tests class module object creation * - * Copyright (C) 2010, 2011 Mike Gerwitz + * Copyright (C) 2010, 2011, 2013 Mike Gerwitz * * This file is part of ease.js. * diff --git a/test/test-class_builder-const.js b/test/test-class_builder-const.js index a3fd5fb..37cbb57 100644 --- a/test/test-class_builder-const.js +++ b/test/test-class_builder-const.js @@ -1,7 +1,7 @@ /** * Tests const keyword * - * Copyright (C) 2011, 2012 Mike Gerwitz + * Copyright (C) 2011, 2012, 2013 Mike Gerwitz * * This file is part of ease.js. * diff --git a/test/test-class_builder-final.js b/test/test-class_builder-final.js index 36507c1..39fa0bc 100644 --- a/test/test-class_builder-final.js +++ b/test/test-class_builder-final.js @@ -1,7 +1,7 @@ /** * Tests final members * - * Copyright (C) 2011 Mike Gerwitz + * Copyright (C) 2011, 2013 Mike Gerwitz * * This file is part of ease.js. * diff --git a/test/test-class_builder-member-restrictions.js b/test/test-class_builder-member-restrictions.js index 9e8a27b..ca7376d 100644 --- a/test/test-class_builder-member-restrictions.js +++ b/test/test-class_builder-member-restrictions.js @@ -1,7 +1,7 @@ /** * Tests class builder member restrictions * - * Copyright (C) 2011, 2012 Mike Gerwitz + * Copyright (C) 2011, 2012, 2013 Mike Gerwitz * * This file is part of ease.js. * diff --git a/test/test-class_builder-static.js b/test/test-class_builder-static.js index 588dde1..24cf57b 100644 --- a/test/test-class_builder-static.js +++ b/test/test-class_builder-static.js @@ -1,7 +1,7 @@ /** * Tests static members * - * Copyright (C) 2011, 2012 Mike Gerwitz + * Copyright (C) 2011, 2012, 2013 Mike Gerwitz * * This file is part of ease.js. * diff --git a/test/test-class_builder-visibility.js b/test/test-class_builder-visibility.js index 2acb6ce..e7f6b01 100644 --- a/test/test-class_builder-visibility.js +++ b/test/test-class_builder-visibility.js @@ -3,7 +3,7 @@ * * See also: test-class-visibility.js * - * Copyright (C) 2011, 2012 Mike Gerwitz + * Copyright (C) 2011, 2012, 2013 Mike Gerwitz * * This file is part of ease.js. * diff --git a/test/test-combine-pre-es5.js b/test/test-combine-pre-es5.js index 0ae2d28..3ed148a 100644 --- a/test/test-combine-pre-es5.js +++ b/test/test-combine-pre-es5.js @@ -6,7 +6,7 @@ * choice. It is intended to catch errors early, to ensure bugs are not * committed between browser tests. * - * Copyright (C) 2011 Mike Gerwitz + * Copyright (C) 2011, 2013 Mike Gerwitz * * This file is part of ease.js. * diff --git a/test/test-combine.js b/test/test-combine.js index bd32272..5e3af9d 100644 --- a/test/test-combine.js +++ b/test/test-combine.js @@ -1,7 +1,7 @@ /** * Tests combined file (basic evaluation) * - * Copyright (C) 2010, 2011 Mike Gerwitz + * Copyright (C) 2010, 2011, 2013 Mike Gerwitz * * This file is part of ease.js. * diff --git a/test/test-index.js b/test/test-index.js index ba642b8..c5b09c2 100644 --- a/test/test-index.js +++ b/test/test-index.js @@ -1,7 +1,7 @@ /** * Tests index.js * - * Copyright (C) 2010, 2011 Mike Gerwitz + * Copyright (C) 2010, 2011, 2013 Mike Gerwitz * * This file is part of ease.js. * diff --git a/test/test-interface-name.js b/test/test-interface-name.js index 80ccf3c..267839b 100644 --- a/test/test-interface-name.js +++ b/test/test-interface-name.js @@ -1,7 +1,7 @@ /** * Tests interface naming * - * Copyright (C) 2011 Mike Gerwitz + * Copyright (C) 2011, 2013 Mike Gerwitz * * This file is part of ease.js. * diff --git a/test/test-prop_parser-parse-keywords.js b/test/test-prop_parser-parse-keywords.js index ae24064..55270e0 100644 --- a/test/test-prop_parser-parse-keywords.js +++ b/test/test-prop_parser-parse-keywords.js @@ -1,7 +1,7 @@ /** * Tests property keyword parser * - * Copyright (C) 2010, 2011 Mike Gerwitz + * Copyright (C) 2010, 2011, 2013 Mike Gerwitz * * This file is part of ease.js. * diff --git a/test/test-rmtrail b/test/test-rmtrail index 5a1a7b2..d5f8022 100755 --- a/test/test-rmtrail +++ b/test/test-rmtrail @@ -1,6 +1,6 @@ #!/bin/bash # -# Copyright (C) 2010, 2011 Mike Gerwitz +# Copyright (C) 2010, 2011, 2013 Mike Gerwitz # # This file is part of ease.js. # diff --git a/test/test-util-abstract.js b/test/test-util-abstract.js index 8c3c083..5636322 100644 --- a/test/test-util-abstract.js +++ b/test/test-util-abstract.js @@ -1,7 +1,7 @@ /** * Tests util abstract functions * - * Copyright (C) 2010, 2011 Mike Gerwitz + * Copyright (C) 2010, 2011, 2013 Mike Gerwitz * * This file is part of ease.js. * diff --git a/test/test-util-clone.js b/test/test-util-clone.js index 8180470..52c373b 100644 --- a/test/test-util-clone.js +++ b/test/test-util-clone.js @@ -1,7 +1,7 @@ /** * Tests util.clone * - * Copyright (C) 2010, 2011 Mike Gerwitz + * Copyright (C) 2010, 2011, 2013 Mike Gerwitz * * This file is part of ease.js. * diff --git a/test/test-util-copy.js b/test/test-util-copy.js index 2d98b04..850bc87 100644 --- a/test/test-util-copy.js +++ b/test/test-util-copy.js @@ -1,7 +1,7 @@ /** * Tests util.copy * - * Copyright (C) 2011 Mike Gerwitz + * Copyright (C) 2011, 2013 Mike Gerwitz * * This file is part of ease.js. * diff --git a/test/test-util-define-secure-prop.js b/test/test-util-define-secure-prop.js index 79996a5..2169d49 100644 --- a/test/test-util-define-secure-prop.js +++ b/test/test-util-define-secure-prop.js @@ -1,7 +1,7 @@ /** * Tests util.defineSecureProp * - * Copyright (C) 2010, 2011 Mike Gerwitz + * Copyright (C) 2010, 2011, 2013 Mike Gerwitz * * This file is part of ease.js. * diff --git a/test/test-util-get-property-descriptor.js b/test/test-util-get-property-descriptor.js index 7f48518..b42038c 100644 --- a/test/test-util-get-property-descriptor.js +++ b/test/test-util-get-property-descriptor.js @@ -1,7 +1,7 @@ /** * Tests util.getPropertyDescriptor * - * Copyright (C) 2011 Mike Gerwitz + * Copyright (C) 2011, 2013 Mike Gerwitz * * This file is part of ease.js. * diff --git a/test/test-util-prop-parse-keywords.js b/test/test-util-prop-parse-keywords.js index 66bf9b5..079ef0d 100644 --- a/test/test-util-prop-parse-keywords.js +++ b/test/test-util-prop-parse-keywords.js @@ -1,7 +1,7 @@ /** * Tests util.propParse keyword parsing * - * Copyright (C) 2010, 2011 Mike Gerwitz + * Copyright (C) 2010, 2011, 2013 Mike Gerwitz * * This file is part of ease.js. * diff --git a/test/test-warn-exception.js b/test/test-warn-exception.js index b697877..bb25a38 100644 --- a/test/test-warn-exception.js +++ b/test/test-warn-exception.js @@ -1,7 +1,7 @@ /** * Tests the Warning prototype * - * Copyright (C) 2011 Mike Gerwitz + * Copyright (C) 2011, 2013 Mike Gerwitz * * This file is part of ease.js. * diff --git a/test/test-warn-handlers.js b/test/test-warn-handlers.js index 612e33d..32db723 100644 --- a/test/test-warn-handlers.js +++ b/test/test-warn-handlers.js @@ -1,7 +1,7 @@ /** * Tests core warning handlers * - * Copyright (C) 2011 Mike Gerwitz + * Copyright (C) 2011, 2013 Mike Gerwitz * * This file is part of ease.js. * diff --git a/test/test-warn-impl.js b/test/test-warn-impl.js index 80e8fee..567195e 100644 --- a/test/test-warn-impl.js +++ b/test/test-warn-impl.js @@ -1,7 +1,7 @@ /** * Tests warning system implementation * - * Copyright (C) 2011 Mike Gerwitz + * Copyright (C) 2011, 2013 Mike Gerwitz * * This file is part of ease.js. * diff --git a/tools/combine-order.js b/tools/combine-order.js index 02ea547..b46a208 100644 --- a/tools/combine-order.js +++ b/tools/combine-order.js @@ -7,7 +7,7 @@ * * Circular dependencies are not supported, nor should they be. * - * Copyright (C) 2011 Mike Gerwitz + * Copyright (C) 2011, 2013 Mike Gerwitz * * This file is part of ease.js. * diff --git a/tools/combine-test.tpl b/tools/combine-test.tpl index 5c77ff2..a571dad 100644 --- a/tools/combine-test.tpl +++ b/tools/combine-test.tpl @@ -1,6 +1,6 @@ # Included in full combined file for test cases # -# Copyright (C) 2010, 2011 Mike Gerwitz +# Copyright (C) 2010, 2011, 2013 Mike Gerwitz # # This file is part of ease.js. # diff --git a/tools/license.tpl b/tools/license.tpl index bf6d11b..c3a8d58 100644 --- a/tools/license.tpl +++ b/tools/license.tpl @@ -4,7 +4,7 @@ * For the original, uncombined and unminifed source, please visit * http://easejs.org. * - * Copyright (C) 2010-2013 Mike Gerwitz + * Copyright (C) 2011, 2013 Mike Gerwitz * * This file is part of ease.js. * diff --git a/tools/version.js.tpl b/tools/version.js.tpl index 3061ec3..1a5d3ca 100644 --- a/tools/version.js.tpl +++ b/tools/version.js.tpl @@ -1,7 +1,7 @@ /** * Provides version information * - * Copyright (C) 2012 Mike Gerwitz + * Copyright (C) 2012, 2013 Mike Gerwitz * * This file is part of ease.js. *