Skip to content

Commit

Permalink
[TIMOB-13315] Updated the headers with the proper license information
Browse files Browse the repository at this point in the history
  • Loading branch information
nebrius committed Nov 13, 2013
1 parent 3d4b8fa commit 3933d17
Show file tree
Hide file tree
Showing 88 changed files with 104 additions and 176 deletions.
4 changes: 1 addition & 3 deletions commands/analyze-options.js
Original file line number Diff line number Diff line change
@@ -1,10 +1,8 @@
/**
* <p>Copyright (c) 2012 by Appcelerator, Inc. All Rights Reserved.
* <p>Copyright (c) 2009-2013 by Appcelerator, Inc. All Rights Reserved.
* Please see the LICENSE file for information about licensing.</p>
*
* CLI command interface for the code processor
*
* @author Bryan Hughes &lt;<a href='mailto:bhughes@appcelerator.com'>bhughes@appcelerator.com</a>&gt;
*/

var CodeProcessor = require('..'),
Expand Down
4 changes: 1 addition & 3 deletions commands/analyze-plugins.js
Original file line number Diff line number Diff line change
@@ -1,10 +1,8 @@
/**
* <p>Copyright (c) 2012 by Appcelerator, Inc. All Rights Reserved.
* <p>Copyright (c) 2009-2013 by Appcelerator, Inc. All Rights Reserved.
* Please see the LICENSE file for information about licensing.</p>
*
* CLI command interface for the code processor
*
* @author Bryan Hughes &lt;<a href='mailto:bhughes@appcelerator.com'>bhughes@appcelerator.com</a>&gt;
*/

var CodeProcessor = require('..'),
Expand Down
4 changes: 1 addition & 3 deletions commands/analyze.js
Original file line number Diff line number Diff line change
@@ -1,10 +1,8 @@
/**
* <p>Copyright (c) 2012 by Appcelerator, Inc. All Rights Reserved.
* <p>Copyright (c) 2009-2013 by Appcelerator, Inc. All Rights Reserved.
* Please see the LICENSE file for information about licensing.</p>
*
* CLI command interface for the code processor
*
* @author Bryan Hughes &lt;<a href='mailto:bhughes@appcelerator.com'>bhughes@appcelerator.com</a>&gt;
*/

var path = require('path'),
Expand Down
4 changes: 1 addition & 3 deletions hooks/codeProcessor.js
Original file line number Diff line number Diff line change
@@ -1,10 +1,8 @@
/**
* <p>Copyright (c) 2012 by Appcelerator, Inc. All Rights Reserved.
* <p>Copyright (c) 2009-2013 by Appcelerator, Inc. All Rights Reserved.
* Please see the LICENSE file for information about licensing.</p>
*
* Hook for CLI integration with the build system
*
* @author Bryan Hughes &lt;<a href='mailto:bhughes@appcelerator.com'>bhughes@appcelerator.com</a>&gt;
*/

var path = require('path'),
Expand Down
3 changes: 1 addition & 2 deletions lib/AST.js
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
/**
* <p>Copyright (c) 2012 by Appcelerator, Inc. All Rights Reserved.
* <p>Copyright (c) 2009-2013 by Appcelerator, Inc. All Rights Reserved.
* Please see the LICENSE file for information about licensing.</p>
*
* Provides various methods for creating and working with ASTs
*
* @module AST
* @author Bryan Hughes &lt;<a href='mailto:bhughes@appcelerator.com'>bhughes@appcelerator.com</a>&gt;
*/

var fs = require('fs'),
Expand Down
3 changes: 1 addition & 2 deletions lib/Base.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@


/**
* <p>Copyright (c) 2012 by Appcelerator, Inc. All Rights Reserved.
* <p>Copyright (c) 2009-2013 by Appcelerator, Inc. All Rights Reserved.
* Please see the LICENSE file for information about licensing.</p>
*
* This module contains many base operations used by the code processor. Almost all of the methods and classes strictly
Expand All @@ -13,7 +13,6 @@
* methods.
*
* @module Base
* @author Bryan Hughes &lt;<a href='mailto:bhughes@appcelerator.com'>bhughes@appcelerator.com</a>&gt;
*/
/*global
throwNativeException
Expand Down
2 changes: 1 addition & 1 deletion lib/CodeProcessor.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* <p>Copyright (c) 2012 by Appcelerator, Inc. All Rights Reserved.
* <p>Copyright (c) 2009-2013 by Appcelerator, Inc. All Rights Reserved.
* Please see the LICENSE file for information about licensing.</p>
*
* WARNING: The Code Processor IS NOT reentrant! A second invokation of the code processor prior to the first
Expand Down
3 changes: 1 addition & 2 deletions lib/CodeProcessorUtils.js
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
/**
* <p>Copyright (c) 2012 by Appcelerator, Inc. All Rights Reserved.
* <p>Copyright (c) 2009-2013 by Appcelerator, Inc. All Rights Reserved.
* Please see the LICENSE file for information about licensing.</p>
*
* Various helper methods
*
* @module CodeProcessorUtils
* @author Bryan Hughes &lt;<a href='mailto:bhughes@appcelerator.com'>bhughes@appcelerator.com</a>&gt;
*/

var fs = require('fs'),
Expand Down
3 changes: 1 addition & 2 deletions lib/RuleProcessor.js
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
/**
* <p>Copyright (c) 2012 by Appcelerator, Inc. All Rights Reserved.
* <p>Copyright (c) 2009-2013 by Appcelerator, Inc. All Rights Reserved.
* Please see the LICENSE file for information about licensing.</p>
*
* Provides helper methods for processing rules
*
* @module RuleProcessor
* @author Bryan Hughes &lt;<a href='mailto:bhughes@appcelerator.com'>bhughes@appcelerator.com</a>&gt;
*/

var Runtime = require('./Runtime'),
Expand Down
3 changes: 1 addition & 2 deletions lib/Runtime.js
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
/**
* <p>Copyright (c) 2012 by Appcelerator, Inc. All Rights Reserved.
* <p>Copyright (c) 2009-2013 by Appcelerator, Inc. All Rights Reserved.
* Please see the LICENSE file for information about licensing.</p>
*
* This module provides information on the current state of the VM, the ability to change the state of the VM, and
* communication-like services, such as logging and events.
*
* @module Runtime
* @author Bryan Hughes &lt;<a href='mailto:bhughes@appcelerator.com'>bhughes@appcelerator.com</a>&gt;
*/

var path = require('path'),
Expand Down
3 changes: 1 addition & 2 deletions lib/base/base.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* <p>Copyright (c) 2012 by Appcelerator, Inc. All Rights Reserved.
* <p>Copyright (c) 2009-2013 by Appcelerator, Inc. All Rights Reserved.
* Please see the LICENSE file for information about licensing.</p>
*
* This module contains many base operations used by the code processor. Almost all of the methods and classes strictly
Expand All @@ -11,7 +11,6 @@
* methods.
*
* @module Base
* @author Bryan Hughes &lt;<a href='mailto:bhughes@appcelerator.com'>bhughes@appcelerator.com</a>&gt;
*/
/*global
throwNativeException
Expand Down
3 changes: 1 addition & 2 deletions lib/rules/AST_Accessor.js
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
/**
* <p>Copyright (c) 2012 by Appcelerator, Inc. All Rights Reserved.
* <p>Copyright (c) 2009-2013 by Appcelerator, Inc. All Rights Reserved.
* Please see the LICENSE file for information about licensing.</p>
*
* A function expression that's for a get/set accessor
*
* @module rules/AST_Accessor
* @author Bryan Hughes &lt;<a href='mailto:bhughes@appcelerator.com'>bhughes@appcelerator.com</a>&gt;
* @see ECMA-262 Spec Chapter 13
*/

Expand Down
3 changes: 1 addition & 2 deletions lib/rules/AST_Array.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* <p>Copyright (c) 2012 by Appcelerator, Inc. All Rights Reserved.
* <p>Copyright (c) 2009-2013 by Appcelerator, Inc. All Rights Reserved.
* Please see the LICENSE file for information about licensing.</p>
*
* ECMA-262 Spec: <em>An array initialiser is an expression describing the initialisation of an Array object, written in
Expand All @@ -8,7 +8,6 @@
* evaluated.</em>
*
* @module rules/AST_Array
* @author Bryan Hughes &lt;<a href='mailto:bhughes@appcelerator.com'>bhughes@appcelerator.com</a>&gt;
* @see ECMA-262 Spec Chapter 11.1.4
*/

Expand Down
3 changes: 1 addition & 2 deletions lib/rules/AST_Assign.js
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
/**
* <p>Copyright (c) 2012 by Appcelerator, Inc. All Rights Reserved.
* <p>Copyright (c) 2009-2013 by Appcelerator, Inc. All Rights Reserved.
* Please see the LICENSE file for information about licensing.</p>
*
* An assignment is one including the '=' symbol and and optional compound operator, such as '+='
*
* @module rules/AST_Assign
* @author Bryan Hughes &lt;<a href='mailto:bhughes@appcelerator.com'>bhughes@appcelerator.com</a>&gt;
* @see ECMA-262 Spec Chapter 11.13
*/

Expand Down
3 changes: 1 addition & 2 deletions lib/rules/AST_Binary.js
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
/**
* <p>Copyright (c) 2012 by Appcelerator, Inc. All Rights Reserved.
* <p>Copyright (c) 2009-2013 by Appcelerator, Inc. All Rights Reserved.
* Please see the LICENSE file for information about licensing.</p>
*
* A binary expression is one that consists of a left operand, an operator, and a right operand. Both mathematical and
* logical operators are covered by this rule
*
* @module rules/AST_Binary
* @author Bryan Hughes &lt;<a href='mailto:bhughes@appcelerator.com'>bhughes@appcelerator.com</a>&gt;
* @see ECMA-262 Spec Chapter 11.5-11.9
*/

Expand Down
3 changes: 1 addition & 2 deletions lib/rules/AST_BlockStatement.js
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
/**
* <p>Copyright (c) 2012 by Appcelerator, Inc. All Rights Reserved.
* <p>Copyright (c) 2009-2013 by Appcelerator, Inc. All Rights Reserved.
* Please see the LICENSE file for information about licensing.</p>
*
* A block is a collection of 0 or more statements.
*
* @module rules/AST_BlockStatement
* @author Bryan Hughes &lt;<a href='mailto:bhughes@appcelerator.com'>bhughes@appcelerator.com</a>&gt;
* @see ECMA-262 Spec Chapter 12.1
*/

Expand Down
3 changes: 1 addition & 2 deletions lib/rules/AST_Break.js
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
/**
* <p>Copyright (c) 2012 by Appcelerator, Inc. All Rights Reserved.
* <p>Copyright (c) 2009-2013 by Appcelerator, Inc. All Rights Reserved.
* Please see the LICENSE file for information about licensing.</p>
*
* The break statement causes execution to exit the current block, if the block can contain a break statement.
*
* @module rules/AST_Break
* @author Bryan Hughes &lt;<a href='mailto:bhughes@appcelerator.com'>bhughes@appcelerator.com</a>&gt;
* @see ECMA-262 Spec Chapter 12.8
*/

Expand Down
3 changes: 1 addition & 2 deletions lib/rules/AST_Call.js
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
/**
* <p>Copyright (c) 2012 by Appcelerator, Inc. All Rights Reserved.
* <p>Copyright (c) 2009-2013 by Appcelerator, Inc. All Rights Reserved.
* Please see the LICENSE file for information about licensing.</p>
*
* A function call
*
* @module rules/AST_Call
* @author Bryan Hughes &lt;<a href='mailto:bhughes@appcelerator.com'>bhughes@appcelerator.com</a>&gt;
* @see ECMA-262 Spec Chapter 11.2.3
*/

Expand Down
3 changes: 1 addition & 2 deletions lib/rules/AST_Conditional.js
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
/**
* <p>Copyright (c) 2012 by Appcelerator, Inc. All Rights Reserved.
* <p>Copyright (c) 2009-2013 by Appcelerator, Inc. All Rights Reserved.
* Please see the LICENSE file for information about licensing.</p>
*
* The conditional (trinary) operator allows for conditional expressions
*
* @module rules/AST_Conditional
* @author Bryan Hughes &lt;<a href='mailto:bhughes@appcelerator.com'>bhughes@appcelerator.com</a>&gt;
* @see ECMA-262 Spec Chapter 11.12
*/

Expand Down
3 changes: 1 addition & 2 deletions lib/rules/AST_Continue.js
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
/**
* <p>Copyright (c) 2012 by Appcelerator, Inc. All Rights Reserved.
* <p>Copyright (c) 2009-2013 by Appcelerator, Inc. All Rights Reserved.
* Please see the LICENSE file for information about licensing.</p>
*
* The continue statement is used to skip the rest of a loop and continue with the next iteration
*
* @module rules/AST_Continue
* @author Bryan Hughes &lt;<a href='mailto:bhughes@appcelerator.com'>bhughes@appcelerator.com</a>&gt;
* @see ECMA-262 Spec Chapter 12.7
*/

Expand Down
3 changes: 1 addition & 2 deletions lib/rules/AST_Debugger.js
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
/**
* <p>Copyright (c) 2012 by Appcelerator, Inc. All Rights Reserved.
* <p>Copyright (c) 2009-2013 by Appcelerator, Inc. All Rights Reserved.
* Please see the LICENSE file for information about licensing.</p>
*
* The 'debugger' keyword is used to trigger a breakpoint if a debugger is attached. Does nothing in this implementation.
*
* @module rules/AST_Debugger
* @author Bryan Hughes &lt;<a href='mailto:bhughes@appcelerator.com'>bhughes@appcelerator.com</a>&gt;
* @see ECMA-262 Spec Chapter 11.15
*/

Expand Down
3 changes: 1 addition & 2 deletions lib/rules/AST_Defun.js
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
/**
* <p>Copyright (c) 2012 by Appcelerator, Inc. All Rights Reserved.
* <p>Copyright (c) 2009-2013 by Appcelerator, Inc. All Rights Reserved.
* Please see the LICENSE file for information about licensing.</p>
*
* Function definition.
*
* @module rules/AST_Defun
* @author Bryan Hughes &lt;<a href='mailto:bhughes@appcelerator.com'>bhughes@appcelerator.com</a>&gt;
* @see ECMA-262 Spec Chapter 13
*/

Expand Down
3 changes: 1 addition & 2 deletions lib/rules/AST_Directive.js
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
/**
* <p>Copyright (c) 2012 by Appcelerator, Inc. All Rights Reserved.
* <p>Copyright (c) 2009-2013 by Appcelerator, Inc. All Rights Reserved.
* Please see the LICENSE file for information about licensing.</p>
*
* A directive statement, namely 'use strict'. Note: there isn't an actual directive rule in the ECMA-262 spec
*
* @module rules/AST_Directive
* @author Bryan Hughes &lt;<a href='mailto:bhughes@appcelerator.com'>bhughes@appcelerator.com</a>&gt;
*/

/**
Expand Down
3 changes: 1 addition & 2 deletions lib/rules/AST_Do.js
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
/**
* <p>Copyright (c) 2012 by Appcelerator, Inc. All Rights Reserved.
* <p>Copyright (c) 2009-2013 by Appcelerator, Inc. All Rights Reserved.
* Please see the LICENSE file for information about licensing.</p>
*
* A do-while loop
*
* @module rules/AST_Do
* @author Bryan Hughes &lt;<a href='mailto:bhughes@appcelerator.com'>bhughes@appcelerator.com</a>&gt;
* @see ECMA-262 Spec Chapter 12.6.1
*/

Expand Down
3 changes: 1 addition & 2 deletions lib/rules/AST_Dot.js
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
/**
* <p>Copyright (c) 2012 by Appcelerator, Inc. All Rights Reserved.
* <p>Copyright (c) 2009-2013 by Appcelerator, Inc. All Rights Reserved.
* Please see the LICENSE file for information about licensing.</p>
*
* A reference to an object's property using the dot operator.
*
* @module rules/AST_Dot
* @author Bryan Hughes &lt;<a href='mailto:bhughes@appcelerator.com'>bhughes@appcelerator.com</a>&gt;
* @see ECMA-262 Spec Chapter 11.2.1
*/

Expand Down
3 changes: 1 addition & 2 deletions lib/rules/AST_EmptyStatement.js
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
/**
* <p>Copyright (c) 2012 by Appcelerator, Inc. All Rights Reserved.
* <p>Copyright (c) 2009-2013 by Appcelerator, Inc. All Rights Reserved.
* Please see the LICENSE file for information about licensing.</p>
*
* An empty statement, a.k.a. an extra semicolon
*
* @module rules/AST_EmptyStatement
* @author Bryan Hughes &lt;<a href='mailto:bhughes@appcelerator.com'>bhughes@appcelerator.com</a>&gt;
* @see ECMA-262 Spec Chapter 11.15
*/

Expand Down
3 changes: 1 addition & 2 deletions lib/rules/AST_False.js
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
/**
* <p>Copyright (c) 2012 by Appcelerator, Inc. All Rights Reserved.
* <p>Copyright (c) 2009-2013 by Appcelerator, Inc. All Rights Reserved.
* Please see the LICENSE file for information about licensing.</p>
*
* This rule represents the true literal
*
* @module rules/AST_False
* @author Bryan Hughes &lt;<a href='mailto:bhughes@appcelerator.com'>bhughes@appcelerator.com</a>&gt;
* @see ECMA-262 Spec Chapter 11.1.3
*/

Expand Down
3 changes: 1 addition & 2 deletions lib/rules/AST_For.js
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
/**
* <p>Copyright (c) 2012 by Appcelerator, Inc. All Rights Reserved.
* <p>Copyright (c) 2009-2013 by Appcelerator, Inc. All Rights Reserved.
* Please see the LICENSE file for information about licensing.</p>
*
* A for loop
*
* @module rules/AST_For
* @author Bryan Hughes &lt;<a href='mailto:bhughes@appcelerator.com'>bhughes@appcelerator.com</a>&gt;
* @see ECMA-262 Spec Chapter 12.6.3
*/

Expand Down
3 changes: 1 addition & 2 deletions lib/rules/AST_ForIn.js
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
/**
* <p>Copyright (c) 2012 by Appcelerator, Inc. All Rights Reserved.
* <p>Copyright (c) 2009-2013 by Appcelerator, Inc. All Rights Reserved.
* Please see the LICENSE file for information about licensing.</p>
*
* A for-in statement
*
* @module rules/AST_ForIn
* @author Bryan Hughes &lt;<a href='mailto:bhughes@appcelerator.com'>bhughes@appcelerator.com</a>&gt;
* @see ECMA-262 Spec Chapter 12.6.4
*/

Expand Down
3 changes: 1 addition & 2 deletions lib/rules/AST_Function.js
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
/**
* <p>Copyright (c) 2012 by Appcelerator, Inc. All Rights Reserved.
* <p>Copyright (c) 2009-2013 by Appcelerator, Inc. All Rights Reserved.
* Please see the LICENSE file for information about licensing.</p>
*
* A function expression (function definitions are handled by {@link module:rules/defun}).
*
* @module rules/AST_Function
* @author Bryan Hughes &lt;<a href='mailto:bhughes@appcelerator.com'>bhughes@appcelerator.com</a>&gt;
* @see ECMA-262 Spec Chapter 13
*/

Expand Down
Loading

0 comments on commit 3933d17

Please sign in to comment.