diff --git a/Makefile b/Makefile index 93afa29..d8d6e7e 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,7 @@ ## # ease.js Makefile # -# Copyright (C) 2012 Mike Gerwitz +# Copyright (C) 2010, 2011, 2012 Mike Gerwitz # # This file is part of ease.js. # diff --git a/doc/Makefile b/doc/Makefile index 203639b..b94291e 100644 --- a/doc/Makefile +++ b/doc/Makefile @@ -3,7 +3,7 @@ # # Responsible for building the project documentation. # -# Copyright (C) 2012 Mike Gerwitz +# Copyright (C) 2011, 2012 Mike Gerwitz # # This file is part of ease.js. # diff --git a/index.js b/index.js index 81a89e5..b6001e1 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 Mike Gerwitz * * This file is part of ease.js. * diff --git a/lib/ClassBuilder.js b/lib/ClassBuilder.js index 3e73c08..1b2ebbc 100644 --- a/lib/ClassBuilder.js +++ b/lib/ClassBuilder.js @@ -1,7 +1,7 @@ /** * Handles building of classes * - * Copyright (C) 2010,2011 Mike Gerwitz + * Copyright (C) 2011, 2012, 2013 Mike Gerwitz * * This file is part of ease.js. * diff --git a/lib/FallbackMemberBuilder.js b/lib/FallbackMemberBuilder.js index cea11c7..8df85d6 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) 2010,2011 Mike Gerwitz + * Copyright (C) 2011 Mike Gerwitz * * This file is part of ease.js. * diff --git a/lib/FallbackVisibilityObjectFactory.js b/lib/FallbackVisibilityObjectFactory.js index 552e010..b7675d9 100644 --- a/lib/FallbackVisibilityObjectFactory.js +++ b/lib/FallbackVisibilityObjectFactory.js @@ -1,7 +1,7 @@ /** * Contains fallback visibility object factory * - * Copyright (C) 2010,2011 Mike Gerwitz + * Copyright (C) 2011 Mike Gerwitz * * This file is part of ease.js. * diff --git a/lib/MemberBuilder.js b/lib/MemberBuilder.js index 05c1b46..c4bdae1 100644 --- a/lib/MemberBuilder.js +++ b/lib/MemberBuilder.js @@ -11,7 +11,7 @@ * methods use ___$$keywords$$, whereas properties use [ val, keywords ]. Decide * on a common format. * - * Copyright (C) 2010,2011 Mike Gerwitz + * Copyright (C) 2011, 2012, 2013 Mike Gerwitz * * This file is part of ease.js. * diff --git a/lib/MemberBuilderValidator.js b/lib/MemberBuilderValidator.js index 963a5ae..a5a9758 100644 --- a/lib/MemberBuilderValidator.js +++ b/lib/MemberBuilderValidator.js @@ -1,7 +1,7 @@ /** * Validation rules for members * - * Copyright (C) 2010,2011 Mike Gerwitz + * Copyright (C) 2011, 2012, 2013 Mike Gerwitz * * This file is part of ease.js. * diff --git a/lib/MethodWrapperFactory.js b/lib/MethodWrapperFactory.js index 906810b..6c0d296 100644 --- a/lib/MethodWrapperFactory.js +++ b/lib/MethodWrapperFactory.js @@ -1,7 +1,7 @@ /** * Builds method wrappers * - * Copyright (C) 2010,2011 Mike Gerwitz + * Copyright (C) 2011, 2012 Mike Gerwitz * * This file is part of ease.js. * diff --git a/lib/MethodWrappers.js b/lib/MethodWrappers.js index 28b761c..087490f 100644 --- a/lib/MethodWrappers.js +++ b/lib/MethodWrappers.js @@ -1,7 +1,7 @@ /** * Default method wrapper functions * - * Copyright (C) 2010,2011 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 b815afc..c275184 100644 --- a/lib/VisibilityObjectFactory.js +++ b/lib/VisibilityObjectFactory.js @@ -1,7 +1,7 @@ /** * Contains visibility object factory * - * Copyright (C) 2010,2011 Mike Gerwitz + * Copyright (C) 2011 Mike Gerwitz * * This file is part of ease.js. * diff --git a/lib/VisibilityObjectFactoryFactory.js b/lib/VisibilityObjectFactoryFactory.js index 5052281..0efba51 100644 --- a/lib/VisibilityObjectFactoryFactory.js +++ b/lib/VisibilityObjectFactoryFactory.js @@ -1,7 +1,7 @@ /** * Contains factory for visibility object factory * - * Copyright (C) 2010,2011 Mike Gerwitz + * Copyright (C) 2011 Mike Gerwitz * * This file is part of ease.js. * diff --git a/lib/class.js b/lib/class.js index 31701e1..acf1f50 100644 --- a/lib/class.js +++ b/lib/class.js @@ -1,7 +1,7 @@ /** * Contains basic inheritance mechanism * - * Copyright (C) 2010,2011 Mike Gerwitz + * Copyright (C) 2010, 2011, 2012 Mike Gerwitz * * This file is part of ease.js. * diff --git a/lib/class_abstract.js b/lib/class_abstract.js index b5984af..ab8ceb6 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) 2010,2011 Mike Gerwitz + * Copyright (C) 2011 Mike Gerwitz * * This file is part of ease.js. * diff --git a/lib/class_final.js b/lib/class_final.js index 1b81a66..ff45a27 100644 --- a/lib/class_final.js +++ b/lib/class_final.js @@ -1,7 +1,7 @@ /** * Wrapper permitting the definition of final classes * - * Copyright (C) 2010,2011 Mike Gerwitz + * Copyright (C) 2011 Mike Gerwitz * * This file is part of ease.js. * diff --git a/lib/interface.js b/lib/interface.js index 9152da0..e4e8880 100644 --- a/lib/interface.js +++ b/lib/interface.js @@ -1,7 +1,7 @@ /** * Contains interface module * - * Copyright (C) 2010,2011 Mike Gerwitz + * Copyright (C) 2010, 2011, 2012, 2013 Mike Gerwitz * * This file is part of ease.js. * diff --git a/lib/prop_parser.js b/lib/prop_parser.js index 9a27845..cbc16ba 100644 --- a/lib/prop_parser.js +++ b/lib/prop_parser.js @@ -1,7 +1,7 @@ /** * Property keyword parser module * - * Copyright (C) 2010,2011 Mike Gerwitz + * Copyright (C) 2010, 2011, 2012 Mike Gerwitz * * This file is part of ease.js. * diff --git a/lib/util.js b/lib/util.js index 43cd6e8..0c0fe11 100644 --- a/lib/util.js +++ b/lib/util.js @@ -1,7 +1,7 @@ /** * Contains utilities functions shared by modules * - * Copyright (C) 2010,2011 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 0d5f369..34620d8 100644 --- a/lib/version.js +++ b/lib/version.js @@ -1,7 +1,7 @@ /** * Provides version information * - * Copyright (C) 2010,2011 Mike Gerwitz + * Copyright (C) 2011, 2012 Mike Gerwitz * * This file is part of ease.js. * diff --git a/lib/warn.js b/lib/warn.js index 2ef88dc..2df6afb 100644 --- a/lib/warn.js +++ b/lib/warn.js @@ -1,7 +1,7 @@ /** * ease.js warning system * - * Copyright (C) 2010,2011 Mike Gerwitz + * Copyright (C) 2011, 2012 Mike Gerwitz * * This file is part of ease.js. * diff --git a/test/FallbackMemberBuilderTest.js b/test/FallbackMemberBuilderTest.js index 92ac877..245ad41 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) 2010,2011 Mike Gerwitz + * Copyright (C) 2011 Mike Gerwitz * * This file is part of ease.js. * diff --git a/test/FallbackVisibilityObjectFactoryTest.js b/test/FallbackVisibilityObjectFactoryTest.js index 16d0bf6..f2510f3 100644 --- a/test/FallbackVisibilityObjectFactoryTest.js +++ b/test/FallbackVisibilityObjectFactoryTest.js @@ -1,7 +1,7 @@ /** * Tests fallback visibility object factory * - * Copyright (C) 2010,2011 Mike Gerwitz + * Copyright (C) 2011, 2012 Mike Gerwitz * * This file is part of ease.js. * diff --git a/test/Interface/ExtendTest.js b/test/Interface/ExtendTest.js index d0ea51a..81e445d 100644 --- a/test/Interface/ExtendTest.js +++ b/test/Interface/ExtendTest.js @@ -1,7 +1,7 @@ /** * Tests extending of interfaces * - * Copyright (C) 2010,2011 Mike Gerwitz + * Copyright (C) 2011 Mike Gerwitz * * This file is part of ease.js. * diff --git a/test/Interface/GeneralTest.js b/test/Interface/GeneralTest.js index c937db8..c03001b 100644 --- a/test/Interface/GeneralTest.js +++ b/test/Interface/GeneralTest.js @@ -1,7 +1,7 @@ /** * Tests interfaces * - * Copyright (C) 2010,2011 Mike Gerwitz + * Copyright (C) 2011 Mike Gerwitz * * This file is part of ease.js. * diff --git a/test/Makefile b/test/Makefile index 1f5db0c..d93f33f 100644 --- a/test/Makefile +++ b/test/Makefile @@ -3,7 +3,7 @@ # # Responsible for running the ease.js test suite. # -# Copyright (C) 2012 Mike Gerwitz +# Copyright (C) 2011, 2012 Mike Gerwitz # # This file is part of ease.js. # diff --git a/test/MemberBuilder/GetterSetterTest.js b/test/MemberBuilder/GetterSetterTest.js index 8dc5217..da6b287 100644 --- a/test/MemberBuilder/GetterSetterTest.js +++ b/test/MemberBuilder/GetterSetterTest.js @@ -1,7 +1,7 @@ /** * Tests MemberBuilder getter/setter builder * - * Copyright (C) 2010,2011 Mike Gerwitz + * Copyright (C) 2011, 2012 Mike Gerwitz * * This file is part of ease.js. * diff --git a/test/MemberBuilder/MethodTest.js b/test/MemberBuilder/MethodTest.js index f138a6e..3c43370 100644 --- a/test/MemberBuilder/MethodTest.js +++ b/test/MemberBuilder/MethodTest.js @@ -1,7 +1,7 @@ /** * Tests method builder * - * Copyright (C) 2010,2011 Mike Gerwitz + * Copyright (C) 2011, 2012 Mike Gerwitz * * This file is part of ease.js. * diff --git a/test/MemberBuilder/PropTest.js b/test/MemberBuilder/PropTest.js index 47b5e26..4dc691f 100644 --- a/test/MemberBuilder/PropTest.js +++ b/test/MemberBuilder/PropTest.js @@ -1,7 +1,7 @@ /** * Tests MemberBuilder property builder * - * Copyright (C) 2010,2011 Mike Gerwitz + * Copyright (C) 2011, 2012 Mike Gerwitz * * This file is part of ease.js. * diff --git a/test/MemberBuilder/VisibilityTest.js b/test/MemberBuilder/VisibilityTest.js index fa05f99..0433940 100644 --- a/test/MemberBuilder/VisibilityTest.js +++ b/test/MemberBuilder/VisibilityTest.js @@ -1,7 +1,7 @@ /** * Tests visibility portion of member builder * - * Copyright (C) 2010,2011 Mike Gerwitz + * Copyright (C) 2011, 2012 Mike Gerwitz * * This file is part of ease.js. * diff --git a/test/MemberBuilder/inc-common.js b/test/MemberBuilder/inc-common.js index ecd0f7a..715d26a 100644 --- a/test/MemberBuilder/inc-common.js +++ b/test/MemberBuilder/inc-common.js @@ -1,7 +1,7 @@ /** * Shared functions for MemberBuilder tests * - * Copyright (C) 2010,2011 Mike Gerwitz + * Copyright (C) 2011 Mike Gerwitz * * This file is part of ease.js. * diff --git a/test/MemberBuilderValidator/GetterSetterTest.js b/test/MemberBuilderValidator/GetterSetterTest.js index d523d12..8cc0209 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) 2010,2011 Mike Gerwitz + * Copyright (C) 2011 Mike Gerwitz * * This file is part of ease.js. * diff --git a/test/MemberBuilderValidator/MethodTest.js b/test/MemberBuilderValidator/MethodTest.js index 750a312..146f8f4 100644 --- a/test/MemberBuilderValidator/MethodTest.js +++ b/test/MemberBuilderValidator/MethodTest.js @@ -1,7 +1,7 @@ /** * Tests member builder validation rules * - * Copyright (C) 2010,2011 Mike Gerwitz + * Copyright (C) 2011, 2012 Mike Gerwitz * * This file is part of ease.js. * diff --git a/test/MemberBuilderValidator/PropertyTest.js b/test/MemberBuilderValidator/PropertyTest.js index 2d7744d..8b55fdb 100644 --- a/test/MemberBuilderValidator/PropertyTest.js +++ b/test/MemberBuilderValidator/PropertyTest.js @@ -1,7 +1,7 @@ /** * Tests member builder validation rules * - * Copyright (C) 2010,2011 Mike Gerwitz + * Copyright (C) 2011 Mike Gerwitz * * This file is part of ease.js. * diff --git a/test/MemberBuilderValidator/inc-common.js b/test/MemberBuilderValidator/inc-common.js index 2f65cf2..1c7679c 100644 --- a/test/MemberBuilderValidator/inc-common.js +++ b/test/MemberBuilderValidator/inc-common.js @@ -1,7 +1,7 @@ /** * Shared functions for MemberBuilderValidator tests * - * Copyright (C) 2010,2011 Mike Gerwitz + * Copyright (C) 2011, 2012 Mike Gerwitz * * This file is part of ease.js. * diff --git a/test/MethodWrapperFactoryTest.js b/test/MethodWrapperFactoryTest.js index b74d6bd..b474695 100644 --- a/test/MethodWrapperFactoryTest.js +++ b/test/MethodWrapperFactoryTest.js @@ -1,7 +1,7 @@ /** * Tests MethodWrapperFactory prototype * - * Copyright (C) 2010,2011 Mike Gerwitz + * Copyright (C) 2011, 2012 Mike Gerwitz * * This file is part of ease.js. * diff --git a/test/MethodWrappersTest.js b/test/MethodWrappersTest.js index 543ecba..12e8b0f 100644 --- a/test/MethodWrappersTest.js +++ b/test/MethodWrappersTest.js @@ -1,7 +1,7 @@ /** * Tests method sut * - * Copyright (C) 2010,2011 Mike Gerwitz + * Copyright (C) 2011, 2012 Mike Gerwitz * * This file is part of ease.js. * diff --git a/test/VersionTest.js b/test/VersionTest.js index 4332e40..0c9b48d 100644 --- a/test/VersionTest.js +++ b/test/VersionTest.js @@ -1,7 +1,7 @@ /** * Tests version.js * - * Copyright (C) 2010,2011 Mike Gerwitz + * Copyright (C) 2011, 2012 Mike Gerwitz * * This file is part of ease.js. * diff --git a/test/VisibilityObjectFactoryFactoryTest.js b/test/VisibilityObjectFactoryFactoryTest.js index afcba59..447ab89 100644 --- a/test/VisibilityObjectFactoryFactoryTest.js +++ b/test/VisibilityObjectFactoryFactoryTest.js @@ -1,7 +1,7 @@ /** * Tests factory for visibility object factory * - * Copyright (C) 2010,2011 Mike Gerwitz + * Copyright (C) 2011, 2012 Mike Gerwitz * * This file is part of ease.js. * diff --git a/test/VisibilityObjectFactoryTest.js b/test/VisibilityObjectFactoryTest.js index 57288c0..a22e7ca 100644 --- a/test/VisibilityObjectFactoryTest.js +++ b/test/VisibilityObjectFactoryTest.js @@ -1,7 +1,7 @@ /** * Tests visibility object factory * - * Copyright (C) 2010,2011 Mike Gerwitz + * Copyright (C) 2011, 2012 Mike Gerwitz * * This file is part of ease.js. * diff --git a/test/common.js b/test/common.js index 57d37e0..3b939fc 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 Mike Gerwitz * * This file is part of ease.js. * diff --git a/test/inc-testcase.js b/test/inc-testcase.js index bb5478a..a753395 100644 --- a/test/inc-testcase.js +++ b/test/inc-testcase.js @@ -1,7 +1,7 @@ /** * Simple X-Unit-style test cases * - * Copyright (C) 2010,2011 Mike Gerwitz + * Copyright (C) 2011, 2012 Mike Gerwitz * * This file is part of ease.js. * diff --git a/test/perf/common.js b/test/perf/common.js index 593620a..b20788a 100644 --- a/test/perf/common.js +++ b/test/perf/common.js @@ -1,7 +1,7 @@ /** * Common performance testing functionality * - * Copyright (C) 2010,2011 Mike Gerwitz + * Copyright (C) 2011 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 24f9850..2f211a5 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) 2010,2011 Mike Gerwitz + * Copyright (C) 2011 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 443d28f..3a7c0ea 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) 2010,2011 Mike Gerwitz + * Copyright (C) 2011 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 fb0b9c9..e8e9cd4 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) 2010,2011 Mike Gerwitz + * Copyright (C) 2011 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 9ebaf5f..9d85088 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) 2010,2011 Mike Gerwitz + * Copyright (C) 2011 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 ec4ce4f..08c5c4a 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) 2010,2011 Mike Gerwitz + * Copyright (C) 2011 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 ce76adf..ccf0f2f 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) 2010,2011 Mike Gerwitz + * Copyright (C) 2011 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 f470566..60bca45 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) 2010,2011 Mike Gerwitz + * Copyright (C) 2011 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 70e377e..525bc8b 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) 2010,2011 Mike Gerwitz + * Copyright (C) 2011 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 9cce142..498228c 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) 2010,2011 Mike Gerwitz + * Copyright (C) 2011 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 a2327db..a8e6dad 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) 2010,2011 Mike Gerwitz + * Copyright (C) 2011 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 05cef49..7588070 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) 2010,2011 Mike Gerwitz + * Copyright (C) 2011 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 dd454c5..7aef3f9 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) 2010,2011 Mike Gerwitz + * Copyright (C) 2011 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 a6a18b1..3281e70 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) 2010,2011 Mike Gerwitz + * Copyright (C) 2011 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 baf09ef..717c4c2 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) 2010,2011 Mike Gerwitz + * Copyright (C) 2011 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 1373f09..b410940 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) 2010,2011 Mike Gerwitz + * Copyright (C) 2011 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 60c0f9f..273d7a0 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) 2010,2011 Mike Gerwitz + * Copyright (C) 2011 Mike Gerwitz * * This file is part of ease.js. * diff --git a/test/runner.js b/test/runner.js index ee8128d..7bc7343 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) 2010,2011 Mike Gerwitz + * Copyright (C) 2011 Mike Gerwitz * * This file is part of ease.js. * diff --git a/test/test-class-abstract.js b/test/test-class-abstract.js index 9ca321a..8f6934a 100644 --- a/test/test-class-abstract.js +++ b/test/test-class-abstract.js @@ -1,7 +1,7 @@ /** * Tests abstract classes * - * Copyright (C) 2010,2011 Mike Gerwitz + * Copyright (C) 2010, 2011, 2012 Mike Gerwitz * * This file is part of ease.js. * diff --git a/test/test-class-constructor.js b/test/test-class-constructor.js index 87d717d..e30f56e 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 Mike Gerwitz + * Copyright (C) 2010, 2011, 2012 Mike Gerwitz * * This file is part of ease.js. * diff --git a/test/test-class-extend.js b/test/test-class-extend.js index e7e824e..07cb873 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 Mike Gerwitz * * This file is part of ease.js. * diff --git a/test/test-class-gettersetter.js b/test/test-class-gettersetter.js index 2e3f091..a912a14 100644 --- a/test/test-class-gettersetter.js +++ b/test/test-class-gettersetter.js @@ -1,7 +1,7 @@ /** * Tests class getter/setter inheritance * - * 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 fb2d6fb..969b86b 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 Mike Gerwitz * * This file is part of ease.js. * diff --git a/test/test-class-name.js b/test/test-class-name.js index 9bd32d1..87c35f0 100644 --- a/test/test-class-name.js +++ b/test/test-class-name.js @@ -1,7 +1,7 @@ /** * Tests class naming * - * Copyright (C) 2010,2011 Mike Gerwitz + * Copyright (C) 2011 Mike Gerwitz * * This file is part of ease.js. * diff --git a/test/test-class-parent.js b/test/test-class-parent.js index b9bd73b..011abaa 100644 --- a/test/test-class-parent.js +++ b/test/test-class-parent.js @@ -1,7 +1,7 @@ /** * Tests class parent invocation * - * 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-visibility.js b/test/test-class-visibility.js index 62d47c3..932d67c 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) 2010,2011 Mike Gerwitz + * Copyright (C) 2011 Mike Gerwitz * * This file is part of ease.js. * diff --git a/test/test-class.js b/test/test-class.js index 14dd991..811013b 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 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 5279d72..551900a 100644 --- a/test/test-class_builder-const.js +++ b/test/test-class_builder-const.js @@ -1,7 +1,7 @@ /** * Tests const keyword * - * Copyright (C) 2010,2011 Mike Gerwitz + * Copyright (C) 2011, 2012 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 9e67948..100288e 100644 --- a/test/test-class_builder-final.js +++ b/test/test-class_builder-final.js @@ -1,7 +1,7 @@ /** * Tests final members * - * Copyright (C) 2010,2011 Mike Gerwitz + * Copyright (C) 2011 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 1b7c3c5..c5ce2ff 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) 2010,2011 Mike Gerwitz + * Copyright (C) 2011, 2012 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 0557af1..2b449b6 100644 --- a/test/test-class_builder-static.js +++ b/test/test-class_builder-static.js @@ -1,7 +1,7 @@ /** * Tests static members * - * Copyright (C) 2010,2011 Mike Gerwitz + * Copyright (C) 2011, 2012 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 f2bc98f..d112d60 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) 2010,2011 Mike Gerwitz + * Copyright (C) 2011, 2012 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 1c8c94f..4e1187f 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) 2010,2011 Mike Gerwitz + * Copyright (C) 2011 Mike Gerwitz * * This file is part of ease.js. * diff --git a/test/test-combine.js b/test/test-combine.js index 9f687f9..34f37de 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 Mike Gerwitz * * This file is part of ease.js. * diff --git a/test/test-index.js b/test/test-index.js index 807a624..29169bf 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 Mike Gerwitz * * This file is part of ease.js. * diff --git a/test/test-interface-name.js b/test/test-interface-name.js index 25ec508..28863fd 100644 --- a/test/test-interface-name.js +++ b/test/test-interface-name.js @@ -1,7 +1,7 @@ /** * Tests interface naming * - * Copyright (C) 2010,2011 Mike Gerwitz + * Copyright (C) 2011 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 1bc6521..cb125fc 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 Mike Gerwitz * * This file is part of ease.js. * diff --git a/test/test-rmtrail b/test/test-rmtrail index e21e7d8..8ea0eca 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 Mike Gerwitz # # This file is part of ease.js. # diff --git a/test/test-util-abstract.js b/test/test-util-abstract.js index 5a88667..1c4bf69 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 Mike Gerwitz * * This file is part of ease.js. * diff --git a/test/test-util-clone.js b/test/test-util-clone.js index b912150..31dbcf6 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 Mike Gerwitz * * This file is part of ease.js. * diff --git a/test/test-util-copy.js b/test/test-util-copy.js index c9c0283..b73f7f5 100644 --- a/test/test-util-copy.js +++ b/test/test-util-copy.js @@ -1,7 +1,7 @@ /** * Tests util.copy * - * Copyright (C) 2010,2011 Mike Gerwitz + * Copyright (C) 2011 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 d1b43b9..4b731c9 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 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 67353dc..5f58df4 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) 2010,2011 Mike Gerwitz + * Copyright (C) 2011 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 1797503..0793aea 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 Mike Gerwitz * * This file is part of ease.js. * diff --git a/test/test-util-prop-parse.js b/test/test-util-prop-parse.js index 7d4fd79..e394647 100644 --- a/test/test-util-prop-parse.js +++ b/test/test-util-prop-parse.js @@ -1,7 +1,7 @@ /** * Tests util.propParse * - * Copyright (C) 2010,2011 Mike Gerwitz + * Copyright (C) 2010, 2011, 2012, 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 ed32949..fa1b046 100644 --- a/test/test-warn-exception.js +++ b/test/test-warn-exception.js @@ -1,7 +1,7 @@ /** * Tests the Warning prototype * - * Copyright (C) 2010,2011 Mike Gerwitz + * Copyright (C) 2011 Mike Gerwitz * * This file is part of ease.js. * diff --git a/test/test-warn-handlers.js b/test/test-warn-handlers.js index d84b6b2..dbfc3dc 100644 --- a/test/test-warn-handlers.js +++ b/test/test-warn-handlers.js @@ -1,7 +1,7 @@ /** * Tests core warning handlers * - * Copyright (C) 2010,2011 Mike Gerwitz + * Copyright (C) 2011 Mike Gerwitz * * This file is part of ease.js. * diff --git a/test/test-warn-impl.js b/test/test-warn-impl.js index 1ddea58..030d8fd 100644 --- a/test/test-warn-impl.js +++ b/test/test-warn-impl.js @@ -1,7 +1,7 @@ /** * Tests warning system implementation * - * Copyright (C) 2010,2011 Mike Gerwitz + * Copyright (C) 2011 Mike Gerwitz * * This file is part of ease.js. * diff --git a/tools/combine b/tools/combine index d0f188a..5aee321 100755 --- a/tools/combine +++ b/tools/combine @@ -1,6 +1,6 @@ #!/bin/sh # -# Copyright (C) 2012 Mike Gerwitz +# Copyright (C) 2010, 2011, 2012 Mike Gerwitz # # This file is part of ease.js. # diff --git a/tools/combine-order.js b/tools/combine-order.js index 1c5a9c9..0d0760c 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) 2010,2011 Mike Gerwitz + * Copyright (C) 2011 Mike Gerwitz * * This file is part of ease.js. * diff --git a/tools/combine-test.tpl b/tools/combine-test.tpl index 904d2ea..22f4ea2 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 Mike Gerwitz # # This file is part of ease.js. # diff --git a/tools/license.tpl b/tools/license.tpl index 0538850..ad0ded4 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,2011 Mike Gerwitz + * Copyright (C) 2011 Mike Gerwitz * * This file is part of ease.js. * diff --git a/tools/linechk b/tools/linechk index 51579a2..fb27399 100755 --- a/tools/linechk +++ b/tools/linechk @@ -4,7 +4,7 @@ # # For a list of ignored patterns, see chk-linelen-ignores # -# Copyright (C) 2012 Mike Gerwitz +# Copyright (C) 2012 Mike Gerwitz # # This file is part of ease.js. # diff --git a/tools/mkexterns b/tools/mkexterns index 7fa55a6..7fa488f 100755 --- a/tools/mkexterns +++ b/tools/mkexterns @@ -5,7 +5,7 @@ # modules. Therefore, to permit this, we must generate an extern file containing # basic definitions of each. # -# Copyright (C) 2012 Mike Gerwitz +# Copyright (C) 2011, 2012 Mike Gerwitz # # This file is part of ease.js. # diff --git a/tools/rmtrail b/tools/rmtrail index fb0d0f2..efc06e5 100755 --- a/tools/rmtrail +++ b/tools/rmtrail @@ -9,7 +9,7 @@ # to keep it as simple (and fast) as possible. The below implementation is # suitable for our needs. # -# Copyright (C) 2012 Mike Gerwitz +# Copyright (C) 2010, 2011, 2012 Mike Gerwitz # # This file is part of ease.js. # diff --git a/tools/signchk b/tools/signchk index bff82f1..1ba0b9e 100755 --- a/tools/signchk +++ b/tools/signchk @@ -5,7 +5,7 @@ # Allows for automated detection of potential attacks or false authorship of # commits by validating signatures against trusted public GPG keys. # -# Copyright (C) 2012 Mike Gerwitz +# Copyright (C) 2012 Mike Gerwitz # # This file is part of ease.js. # diff --git a/tools/verset b/tools/verset index 3f4dc38..e27ca86 100755 --- a/tools/verset +++ b/tools/verset @@ -2,7 +2,7 @@ # # Simple version update script # -# Copyright (C) 2012 Mike Gerwitz +# Copyright (C) 2012 Mike Gerwitz # # This file is part of ease.js. # diff --git a/tools/version.js.tpl b/tools/version.js.tpl index 07cc5ec..049216b 100644 --- a/tools/version.js.tpl +++ b/tools/version.js.tpl @@ -1,7 +1,7 @@ /** * Provides version information * - * Copyright (C) 2010,2011 Mike Gerwitz + * Copyright (C) 2012 Mike Gerwitz * * This file is part of ease.js. *