Skip to content

Commit a63dffa

Browse files
committed
fix copyright
1 parent f571c48 commit a63dffa

File tree

4,174 files changed

+8343
-8343
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

4,174 files changed

+8343
-8343
lines changed

ArcadeExpression.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// COPYRIGHT © 201 Esri
1+
// COPYRIGHT © 2020 Esri
22
//
33
// All rights reserved under the copyright laws of the United States
44
// and applicable international laws, treaties, and conventions.
@@ -22,4 +22,4 @@
2222
//
2323
// See http://js.arcgis.com/3.33/esri/copyright.txt for details.
2424

25-
define(["dojo/_base/declare","dojo/_base/lang","dojo/has","./kernel","./layers/support/attributeUtils","./support/expressionUtils"],(function(e,t,i,s,r,n){var a=e(null,{declaredClass:"esri.ArcadeExpression",expression:null,profile:null,returnType:null,async:null,id:null,syntaxTree:null,_traits:null,_attributeDef:null,_attributeCache:null,_compiled:!1,constructor:function(e){t.mixin(this,e),this.returnType=this.returnType||"string",this.id=r.getAttributeId(this.expression),this._setSyntaxTree(this.profile.parse(this)),this.async=this.async||this.profile.isAsync(this)},hasGeometryOperations:function(){var e=this._traits.geometryOperations;return void 0===e&&(e=this._traits.geometryOperations=n.hasGeometryOperations(this.syntaxTree)),e},hasFeatureSetOperations:function(){var e=this._traits.featureSetOperations;return void 0===e&&(e=this._traits.featureSetOperations=n.hasFeatureSetOperations(this.syntaxTree)),e},hasVariable:function(e){var t=this._traits.variables;return void 0===t[e]&&(t[e]=n.hasVariable(this.syntaxTree,e)),t[e]},hasFunction:function(e){var t=this._traits.functions;return void 0===t[e]&&(t[e]=n.hasFunction(this.syntaxTree,e)),t[e]},evaluate:function(e){this._compile();var t=this._attributeCache.compiledFunc;return this.async?n.executeAsyncFunction(t,e):n.executeFunction(t,e)},_setSyntaxTree:function(e){this.syntaxTree=e,this._compiled=!1,this._traits={variables:{},functions:{}},this._createLegacyValueObjects()},_createLegacyValueObjects:function(){this._attributeDef={valueExpression:this.expression},this._attributeCache={attributeInfo:this._attributeDef,isNumeric:"number"===this.returnType,idSource:this.expression,id:this.id,hasExpr:!0,compiledFunc:null,syntaxTree:this.syntaxTree,isScaleDriven:!1,dependsOnView:this.hasVariable("$view"),dependsOnGeometry:this.hasGeometryOperations(),isJSFunc:!1}},_compile:function(){this._compiled||(this._attributeCache.compiledFunc=this.profile.compile(this),this._compiled=!0)}});return i("extend-esri")&&(s.ArcadeExpression=a),a}));
25+
define(["dojo/_base/declare","dojo/_base/lang","dojo/has","./kernel","./layers/support/attributeUtils","./support/expressionUtils"],(function(e,t,i,s,r,n){var a=e(null,{declaredClass:"esri.ArcadeExpression",expression:null,profile:null,returnType:null,async:null,id:null,syntaxTree:null,_traits:null,_attributeDef:null,_attributeCache:null,_compiled:!1,constructor:function(e){t.mixin(this,e),this.returnType=this.returnType||"string",this.id=r.getAttributeId(this.expression),this._setSyntaxTree(this.profile.parse(this)),this.async=this.async||this.profile.isAsync(this)},hasGeometryOperations:function(){var e=this._traits.geometryOperations;return void 0===e&&(e=this._traits.geometryOperations=n.hasGeometryOperations(this.syntaxTree)),e},hasFeatureSetOperations:function(){var e=this._traits.featureSetOperations;return void 0===e&&(e=this._traits.featureSetOperations=n.hasFeatureSetOperations(this.syntaxTree)),e},hasVariable:function(e){var t=this._traits.variables;return void 0===t[e]&&(t[e]=n.hasVariable(this.syntaxTree,e)),t[e]},hasFunction:function(e){var t=this._traits.functions;return void 0===t[e]&&(t[e]=n.hasFunction(this.syntaxTree,e)),t[e]},evaluate:function(e){this._compile();var t=this._attributeCache.compiledFunc;return this.async?n.executeAsyncFunction(t,e):n.executeFunction(t,e)},_setSyntaxTree:function(e){this.syntaxTree=e,this._compiled=!1,this._traits={variables:{},functions:{}},this._createLegacyValueObjects()},_createLegacyValueObjects:function(){this._attributeDef={valueExpression:this.expression},this._attributeCache={attributeInfo:this._attributeDef,isNumeric:"number"===this.returnType,idSource:this.expression,id:this.id,hasExpr:!0,compiledFunc:null,syntaxTree:this.syntaxTree,isScaleDriven:!1,dependsOnView:this.hasVariable("$view"),dependsOnGeometry:this.hasGeometryOperations(),isJSFunc:!1}},_compile:function(){this._compiled||(this._attributeCache.compiledFunc=this.profile.compile(this),this._compiled=!0)}});return i("extend-esri")&&(s.ArcadeExpression=a),a}));

Color.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// COPYRIGHT © 201 Esri
1+
// COPYRIGHT © 2020 Esri
22
//
33
// All rights reserved under the copyright laws of the United States
44
// and applicable international laws, treaties, and conventions.
@@ -22,4 +22,4 @@
2222
//
2323
// See http://js.arcgis.com/3.33/esri/copyright.txt for details.
2424

25-
define(["dojo/_base/declare","dojo/_base/Color","dojo/has","./kernel"],(function(o,r,e,n){var a=o([r],{declaredClass:"esri.Color"});a.toJsonColor=function(o){return o&&[o.r,o.g,o.b,o.a>1?o.a:Math.round(255*o.a)]},a.toDojoColor=function(o){return o&&new a([o[0],o[1],o[2],o[3]/255])};var l,t=["named","blendColors","fromRgb","fromHex","fromArray","fromString"];for(l=0;l<t.length;l++)a[t[l]]=r[t[l]];return e("extend-esri")&&(n.Color=a),a}));
25+
define(["dojo/_base/declare","dojo/_base/Color","dojo/has","./kernel"],(function(o,r,e,n){var a=o([r],{declaredClass:"esri.Color"});a.toJsonColor=function(o){return o&&[o.r,o.g,o.b,o.a>1?o.a:Math.round(255*o.a)]},a.toDojoColor=function(o){return o&&new a([o[0],o[1],o[2],o[3]/255])};var l,t=["named","blendColors","fromRgb","fromHex","fromArray","fromString"];for(l=0;l<t.length;l++)a[t[l]]=r[t[l]];return e("extend-esri")&&(n.Color=a),a}));

Credential.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// COPYRIGHT © 201 Esri
1+
// COPYRIGHT © 2020 Esri
22
//
33
// All rights reserved under the copyright laws of the United States
44
// and applicable international laws, treaties, and conventions.
@@ -22,4 +22,4 @@
2222
//
2323
// See http://js.arcgis.com/3.33/esri/copyright.txt for details.
2424

25-
define(["dojo/_base/declare","dojo/has","./kernel","./IdentityManagerBase"],(function(e,n,a,r){var d=e(r.Credential,{});return n("extend-esri")&&(a.Credential=d),d}));
25+
define(["dojo/_base/declare","dojo/has","./kernel","./IdentityManagerBase"],(function(e,n,a,r){var d=e(r.Credential,{});return n("extend-esri")&&(a.Credential=d),d}));

Evented.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

IdentityManager.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// COPYRIGHT © 201 Esri
1+
// COPYRIGHT © 2020 Esri
22
//
33
// All rights reserved under the copyright laws of the United States
44
// and applicable international laws, treaties, and conventions.
@@ -22,4 +22,4 @@
2222
//
2323
// See http://js.arcgis.com/3.33/esri/copyright.txt for details.
2424

25-
define(["./IdentityManagerDialog","./kernel","./OAuthSignInHandler","dojo/_base/declare"],(function(e,n,i,a){var d=new e;return n.id=a.safeMixin(d,i),n.id}));
25+
define(["./IdentityManagerDialog","./kernel","./OAuthSignInHandler","dojo/_base/declare"],(function(e,n,i,a){var d=new e;return n.id=a.safeMixin(d,i),n.id}));

IdentityManagerBase.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)