c9-core/node_modules/tern/plugin/angular.js

1022 wiersze
46 KiB
JavaScript

(function(mod) {
if (typeof exports == "object" && typeof module == "object") // CommonJS
return mod(require("../lib/infer"), require("../lib/tern"), require("../lib/comment"),
require("acorn/dist/walk"));
if (typeof define == "function" && define.amd) // AMD
return define(["../lib/infer", "../lib/tern", "../lib/comment", "acorn/dist/walk"], mod);
mod(tern, tern, tern.comment, acorn.walk);
})(function(infer, tern, comment, walk) {
"use strict";
var SetDoc = infer.constraint({
construct: function(doc) { this.doc = doc; },
addType: function(type) {
if (!type.doc) type.doc = this.doc;
}
});
function Injector() {
this.fields = Object.create(null);
this.forward = [];
}
Injector.prototype.get = function(name) {
if (name == "$scope") return new infer.Obj(globalInclude("$rootScope").getType(), "$scope");
if (name in this.fields) return this.fields[name];
var field = this.fields[name] = new infer.AVal;
return field;
};
Injector.prototype.set = function(name, val, doc, node, depth) {
if (name == "$scope" || depth && depth > 10) return;
var field = this.fields[name] || (this.fields[name] = new infer.AVal);
if (!depth) field.local = true;
if (!field.origin) field.origin = infer.cx().curOrigin;
if (typeof node == "string" && !field.span) field.span = node;
else if (node && typeof node == "object" && !field.originNode) field.originNode = node;
if (doc) { field.doc = doc; field.propagate(new SetDoc(doc)); }
val.propagate(field);
for (var i = 0; i < this.forward.length; ++i)
this.forward[i].set(name, val, doc, node, (depth || 0) + 1);
};
Injector.prototype.forwardTo = function(injector) {
this.forward.push(injector);
for (var field in this.fields) {
var val = this.fields[field];
injector.set(field, val, val.doc, val.span || val.originNode, 1);
}
};
function globalInclude(name) {
var service = infer.cx().definitions.angular.service;
if (service.hasProp(name)) return service.getProp(name);
}
function getInclude(mod, name) {
var glob = globalInclude(name);
if (glob) return glob;
if (!mod.injector) return infer.ANull;
return mod.injector ? mod.injector.get(name) : infer.ANull;
}
function applyWithInjection(mod, fnType, node, asNew) {
var deps = [];
if (/FunctionExpression/.test(node.type)) {
for (var i = 0; i < node.params.length; ++i)
deps.push(getInclude(mod, node.params[i].name));
} else if (node.type == "ArrayExpression") {
for (var i = 0; i < node.elements.length - 1; ++i) {
var elt = node.elements[i];
if (elt.type == "Literal" && typeof elt.value == "string")
deps.push(getInclude(mod, elt.value));
else
deps.push(infer.ANull);
}
var last = node.elements[node.elements.length - 1];
if (last && /FunctionExpression/.test(last.type))
fnType = last.scope.fnType;
}
var result = new infer.AVal;
if (asNew) {
var self = new infer.AVal;
fnType.propagate(new infer.IsCtor(self));
self.propagate(result, 90);
fnType.propagate(new infer.IsCallee(self, deps, null, new infer.IfObj(result)));
} else {
fnType.propagate(new infer.IsCallee(infer.cx().topScope, deps, null, result));
}
return result;
}
infer.registerFunction("angular_callInject", function(argN) {
return function(self, args, argNodes) {
var mod = self.getType();
if (mod && argNodes && argNodes[argN])
applyWithInjection(mod, args[argN], argNodes[argN]);
};
});
infer.registerFunction("angular_regFieldCall", function(self, args, argNodes) {
var mod = self.getType();
if (mod && argNodes && argNodes.length > 1) {
var result = applyWithInjection(mod, args[1], argNodes[1]);
if (mod.injector && argNodes[0].type == "Literal")
mod.injector.set(argNodes[0].value, result, argNodes[0].angularDoc, argNodes[0]);
}
});
infer.registerFunction("angular_regFieldNew", function(self, args, argNodes) {
var mod = self.getType();
if (mod && argNodes && argNodes.length > 1) {
var result = applyWithInjection(mod, args[1], argNodes[1], true);
if (mod.injector && argNodes[0].type == "Literal")
mod.injector.set(argNodes[0].value, result, argNodes[0].angularDoc, argNodes[0]);
}
});
infer.registerFunction("angular_regField", function(self, args, argNodes) {
var mod = self.getType();
if (mod && mod.injector && argNodes && argNodes[0] && argNodes[0].type == "Literal" && args[1])
mod.injector.set(argNodes[0].value, args[1], argNodes[0].angularDoc, argNodes[0]);
});
function arrayNodeToStrings(node) {
var strings = [];
if (node && node.type == "ArrayExpression")
for (var i = 0; i < node.elements.length; ++i) {
var elt = node.elements[i];
if (elt.type == "Literal" && typeof elt.value == "string")
strings.push(elt.value);
}
return strings;
}
function moduleProto(cx) {
var ngDefs = cx.definitions.angular;
return ngDefs && ngDefs.Module.getProp("prototype").getType();
}
function declareMod(name, includes) {
var cx = infer.cx(), data = cx.parent.mod.angular;
var proto = moduleProto(cx);
var mod = new infer.Obj(proto || true);
if (!proto) data.nakedModules.push(mod);
mod.origin = cx.curOrigin;
mod.injector = new Injector();
mod.metaData = {includes: includes};
for (var i = 0; i < includes.length; ++i) {
var depMod = data.modules[includes[i]];
if (!depMod)
(data.pendingImports[includes[i]] || (data.pendingImports[includes[i]] = [])).push(mod.injector);
else if (depMod.injector)
depMod.injector.forwardTo(mod.injector);
}
if (typeof name == "string") {
data.modules[name] = mod;
var pending = data.pendingImports[name];
if (pending) {
delete data.pendingImports[name];
for (var i = 0; i < pending.length; ++i)
mod.injector.forwardTo(pending[i]);
}
}
return mod;
}
infer.registerFunction("angular_module", function(_self, _args, argNodes) {
var mod, name = argNodes && argNodes[0] && argNodes[0].type == "Literal" && argNodes[0].value;
if (typeof name == "string")
mod = infer.cx().parent.mod.angular.modules[name];
if (!mod)
mod = declareMod(name, arrayNodeToStrings(argNodes && argNodes[1]));
return mod;
});
var IsBound = infer.constraint({
construct: function(self, args, target) {
this.self = self; this.args = args; this.target = target;
},
addType: function(tp) {
if (!(tp instanceof infer.Fn)) return;
this.target.addType(new infer.Fn(tp.name, tp.self, tp.args.slice(this.args.length),
tp.argNames.slice(this.args.length), tp.retval));
this.self.propagate(tp.self);
for (var i = 0; i < Math.min(tp.args.length, this.args.length); ++i)
this.args[i].propagate(tp.args[i]);
}
});
infer.registerFunction("angular_bind", function(_self, args) {
if (args.length < 2) return infer.ANull;
var result = new infer.AVal;
args[1].propagate(new IsBound(args[0], args.slice(2), result));
return result;
});
function postParse(ast, text) {
walk.simple(ast, {
CallExpression: function(node) {
if (node.callee.type == "MemberExpression" &&
!node.callee.computed && node.arguments.length &&
/^(value|constant|controller|factory|provider)$/.test(node.callee.property.name)) {
var before = comment.commentsBefore(text, node.callee.property.start - 1);
if (before) {
var first = before[0], dot = first.search(/\.\s/);
if (dot > 5) first = first.slice(0, dot + 1);
first = first.trim().replace(/\s*\n\s*\*\s*|\s{1,}/g, " ");
node.arguments[0].angularDoc = first;
}
}
}
});
}
function postLoadDef(json) {
var cx = infer.cx(), defName = json["!name"], defs = cx.definitions[defName];
if (defName == "angular") {
var proto = moduleProto(cx), naked = cx.parent.mod.angular.nakedModules;
if (proto) for (var i = 0; i < naked.length; ++i) naked[i].proto = proto;
return;
}
var mods = defs && defs["!ng"];
if (mods) for (var name in mods.props) {
var obj = mods.props[name].getType();
var mod = declareMod(name.replace(/`/g, "."), obj.metaData && obj.metaData.includes || []);
mod.origin = defName;
for (var prop in obj.props) {
var val = obj.props[prop], tp = val.getType();
if (!tp) continue;
if (/^_inject_/.test(prop)) {
if (!tp.name) tp.name = prop.slice(8);
mod.injector.set(prop.slice(8), tp, val.doc, val.span);
} else {
obj.props[prop].propagate(mod.defProp(prop));
}
}
}
}
function preCondenseReach(state) {
var mods = infer.cx().parent.mod.angular.modules;
var modObj = new infer.Obj(null), found = 0;
for (var name in mods) {
var mod = mods[name];
if (state.origins.indexOf(mod.origin) > -1) {
var propName = name.replace(/\./g, "`");
modObj.defProp(propName).addType(mod);
mod.condenseForceInclude = true;
++found;
if (mod.injector) for (var inj in mod.injector.fields) {
var field = mod.injector.fields[inj];
if (field.local) state.roots["!ng." + propName + "._inject_" + inj] = field;
}
}
}
if (found) state.roots["!ng"] = modObj;
}
function postCondenseReach(state) {
var mods = infer.cx().parent.mod.angular.modules;
for (var path in state.types) {
var m;
if (m = path.match(/^!ng\.([^\.]+)\._inject_([^\.]+)^/)) {
var mod = mods[m[1].replace(/`/g, ".")];
var field = mod.injector.fields[m[2]];
var data = state.types[path];
if (field.span) data.span = field.span;
if (field.doc) data.doc = field.doc;
}
}
}
function initServer(server) {
server.mod.angular = {
modules: Object.create(null),
pendingImports: Object.create(null),
nakedModules: []
};
}
tern.registerPlugin("angular", function(server) {
initServer(server);
server.on("reset", function() { initServer(server); });
server.on("postParse", postParse)
server.on("postLoadDef", postLoadDef)
server.on("preCondenseReach", preCondenseReach)
server.on("postCondenseReach", postCondenseReach)
server.addDefs(defs, true)
});
var defs = {
"!name": "angular",
"!define": {
cacheObj: {
info: "fn() -> ?",
put: "fn(key: string, value: ?) -> !1",
get: "fn(key: string) -> ?",
remove: "fn(key: string)",
removeAll: "fn()",
destroy: "fn()"
},
eventObj: {
targetScope: "service.$rootScope",
currentScope: "service.$rootScope",
name: "string",
stopPropagation: "fn()",
preventDefault: "fn()",
defaultPrevented: "bool"
},
directiveObj: {
multiElement: {
"!type": "bool",
"!url": "https://docs.angularjs.org/api/ng/service/$compile#-multielement-",
"!doc": "When this property is set to true, the HTML compiler will collect DOM nodes between nodes with the attributes directive-name-start and directive-name-end, and group them together as the directive elements. It is recommended that this feature be used on directives which are not strictly behavioural (such as ngClick), and which do not manipulate or replace child nodes (such as ngInclude)."
},
priority: {
"!type": "number",
"!url": "https://docs.angularjs.org/api/ng/service/$compile#-priority-",
"!doc": "When there are multiple directives defined on a single DOM element, sometimes it is necessary to specify the order in which the directives are applied. The priority is used to sort the directives before their compile functions get called. Priority is defined as a number. Directives with greater numerical priority are compiled first. Pre-link functions are also run in priority order, but post-link functions are run in reverse order. The order of directives with the same priority is undefined. The default priority is 0."
},
terminal: {
"!type": "bool",
"!url": "https://docs.angularjs.org/api/ng/service/$compile#-terminal-",
"!doc": "If set to true then the current priority will be the last set of directives which will execute (any directives at the current priority will still execute as the order of execution on same priority is undefined). Note that expressions and other directives used in the directive's template will also be excluded from execution."
},
scope: {
"!type": "?",
"!url": "https://docs.angularjs.org/api/ng/service/$compile#-scope-",
"!doc": "If set to true, then a new scope will be created for this directive. If multiple directives on the same element request a new scope, only one new scope is created. The new scope rule does not apply for the root of the template since the root of the template always gets a new scope. If set to {} (object hash), then a new 'isolate' scope is created. The 'isolate' scope differs from normal scope in that it does not prototypically inherit from the parent scope. This is useful when creating reusable components, which should not accidentally read or modify data in the parent scope."
},
bindToController: {
"!type": "bool",
"!url": "https://docs.angularjs.org/api/ng/service/$compile#-bindtocontroller-",
"!doc": "When an isolate scope is used for a component (see above), and controllerAs is used, bindToController: true will allow a component to have its properties bound to the controller, rather than to scope. When the controller is instantiated, the initial values of the isolate scope bindings are already available."
},
controller: {
"!type": "fn()",
"!url": "https://docs.angularjs.org/api/ng/service/$compile#-require-",
"!doc": "Controller constructor function. The controller is instantiated before the pre-linking phase and it is shared with other directives (see require attribute). This allows the directives to communicate with each other and augment each other's behavior."
},
require: {
"!type": "string",
"!url": "https://docs.angularjs.org/api/ng/service/$compile#-controller-",
"!doc": "Require another directive and inject its controller as the fourth argument to the linking function. The require takes a string name (or array of strings) of the directive(s) to pass in. If an array is used, the injected argument will be an array in corresponding order. If no such directive can be found, or if the directive does not have a controller, then an error is raised."
},
controllerAs: {
"!type": "string",
"!url": "https://docs.angularjs.org/api/ng/service/$compile#-controlleras-",
"!doc": "Controller alias at the directive scope. An alias for the controller so it can be referenced at the directive template. The directive needs to define a scope for this configuration to be used. Useful in the case when directive is used as component."
},
restrict: {
"!type": "string",
"!url": "https://docs.angularjs.org/api/ng/service/$compile#-restrict-",
"!doc": "String of subset of EACM which restricts the directive to a specific directive declaration style. If omitted, the defaults (elements and attributes) are used. E - Element name (default): <my-directive></my-directive>. A - Attribute (default): <div my-directive='exp'></div>. C - Class: <div class='my-directive: exp;'></div>. M - Comment: <!-- directive: my-directive exp --> "
},
templateNamespace: {
"!type": "string",
"!url": "https://docs.angularjs.org/api/ng/service/$compile#-templatenamespace-",
"!doc": "String representing the document type used by the markup in the template. AngularJS needs this information as those elements need to be created and cloned in a special way when they are defined outside their usual containers like <svg> and <math>."
},
template: {
"!type": "string",
"!url": "https://docs.angularjs.org/api/ng/service/$compile#-template-",
"!doc": "HTML markup that may: Replace the contents of the directive's element (default). Replace the directive's element itself (if replace is true - DEPRECATED). Wrap the contents of the directive's element (if transclude is true)."
},
templateUrl: {
"!type": "string",
"!url": "https://docs.angularjs.org/api/ng/service/$compile#-templateurl-",
"!doc": "This is similar to template but the template is loaded from the specified URL, asynchronously."
},
transclude: {
"!type": "bool",
"!url": "https://docs.angularjs.org/api/ng/service/$compile#-transclude-",
"!doc": "Extract the contents of the element where the directive appears and make it available to the directive. The contents are compiled and provided to the directive as a transclusion function."
},
compile: {
"!type": "fn(tElement: +Element, tAttrs: +Attr)",
"!url": "https://docs.angularjs.org/api/ng/service/$compile#-transclude-",
"!doc": "The compile function deals with transforming the template DOM. Since most directives do not do template transformation, it is not used often."
},
link: {
"!type": "fn(scope: ?, iElement: +Element, iAttrs: +Attr, controller: ?, transcludeFn: fn())",
"!url": "https://docs.angularjs.org/api/ng/service/$compile#-link-",
"!doc": "The link function is responsible for registering DOM listeners as well as updating the DOM. It is executed after the template has been cloned. This is where most of the directive logic will be put."
}
},
Module: {
"!url": "http://docs.angularjs.org/api/angular.Module",
"!doc": "Interface for configuring angular modules.",
prototype: {
animation: {
"!type": "fn(name: string, animationFactory: fn()) -> !this",
"!url": "http://docs.angularjs.org/api/angular.Module#animation",
"!doc": "Defines an animation hook that can be later used with $animate service and directives that use this service."
},
config: {
"!type": "fn(configFn: fn()) -> !this",
"!effects": ["custom angular_callInject 0"],
"!url": "http://docs.angularjs.org/api/angular.Module#config",
"!doc": "Use this method to register work which needs to be performed on module loading."
},
constant: "service.$provide.constant",
controller: {
"!type": "fn(name: string, constructor: fn()) -> !this",
"!effects": ["custom angular_regFieldCall"],
"!url": "http://docs.angularjs.org/api/ng.$controllerProvider",
"!doc": "Register a controller."
},
directive: {
"!type": "fn(name: string, directiveFactory: fn() -> directiveObj) -> !this",
"!effects": ["custom angular_regFieldCall"],
"!url": "http://docs.angularjs.org/api/ng.$compileProvider#directive",
"!doc": "Register a new directive with the compiler."
},
factory: "service.$provide.factory",
filter: {
"!type": "fn(name: string, filterFactory: fn()) -> !this",
"!effects": ["custom angular_callInject 1"],
"!url": "http://docs.angularjs.org/api/ng.$filterProvider",
"!doc": "Register filter factory function."
},
provider: "service.$provide.provider",
run: {
"!type": "fn(initializationFn: fn()) -> !this",
"!effects": ["custom angular_callInject 0"],
"!url": "http://docs.angularjs.org/api/angular.Module#run",
"!doc": "Register work which should be performed when the injector is done loading all modules."
},
service: "service.$provide.service",
value: "service.$provide.value",
name: {
"!type": "string",
"!url": "http://docs.angularjs.org/api/angular.Module#name",
"!doc": "Name of the module."
},
requires: {
"!type": "[string]",
"!url": "http://docs.angularjs.org/api/angular.Module#requires",
"!doc": "List of module names which must be loaded before this module."
}
}
},
Promise: {
"!url": "http://docs.angularjs.org/api/ng.$q",
"!doc": "Allow for interested parties to get access to the result of the deferred task when it completes.",
prototype: {
then: "fn(successCallback: fn(value: ?), errorCallback: fn(reason: ?), notifyCallback: fn(value: ?)) -> +Promise",
"catch": "fn(errorCallback: fn(reason: ?))",
"finally": "fn(callback: fn()) -> +Promise",
success: "fn(callback: fn(data: ?, status: number, headers: ?, config: ?)) -> +Promise",
error: "fn(callback: fn(data: ?, status: number, headers: ?, config: ?)) -> +Promise"
}
},
Deferred: {
"!url": "http://docs.angularjs.org/api/ng.$q",
prototype: {
resolve: "fn(value: ?)",
reject: "fn(reason: ?)",
notify: "fn(value: ?)",
promise: "+Promise"
}
},
ResourceClass: {
"!url": "http://docs.angularjs.org/api/ngResource.$resource",
prototype: {
$promise: "+Promise",
$save: "fn()"
}
},
Resource: {
"!url": "http://docs.angularjs.org/api/ngResource.$resource",
prototype: {
get: "fn(params: ?, callback: fn()) -> +ResourceClass",
save: "fn(params: ?, callback: fn()) -> +ResourceClass",
query: "fn(params: ?, callback: fn()) -> +ResourceClass",
remove: "fn(params: ?, callback: fn()) -> +ResourceClass",
"delete": "fn(params: ?, callback: fn()) -> +ResourceClass"
}
},
service: {
$anchorScroll: {
"!type": "fn()",
"!url": "http://docs.angularjs.org/api/ng.$anchorScroll",
"!doc": "Checks current value of $location.hash() and scroll to related element."
},
$animate: {
"!url": "http://docs.angularjs.org/api/ng.$animate",
"!doc": "Rudimentary DOM manipulation functions to insert, remove, move elements within the DOM.",
addClass: {
"!type": "fn(element: +Element, className: string, done?: fn()) -> !this",
"!url": "http://docs.angularjs.org/api/ng.$animate#addClass",
"!doc": "Adds the provided className CSS class value to the provided element."
},
enter: {
"!type": "fn(element: +Element, parent: +Element, after: +Element, done?: fn()) -> !this",
"!url": "http://docs.angularjs.org/api/ng.$animate#enter",
"!doc": "Inserts the element into the DOM either after the after element or within the parent element."
},
leave: {
"!type": "fn(element: +Element, done?: fn()) -> !this",
"!url": "http://docs.angularjs.org/api/ng.$animate#leave",
"!doc": "Removes the element from the DOM."
},
move: {
"!type": "fn(element: +Element, parent: +Element, after: +Element, done?: fn()) -> !this",
"!url": "http://docs.angularjs.org/api/ng.$animate#move",
"!doc": "Moves element to be placed either after the after element or inside of the parent element."
},
removeClass: {
"!type": "fn(element: +Element, className: string, done?: fn()) -> !this",
"!url": "http://docs.angularjs.org/api/ng.$animate#removeClass",
"!doc": "Removes the provided className CSS class value from the provided element."
}
},
$cacheFactory: {
"!type": "fn(cacheId: string, options?: ?) -> cacheObj",
"!url": "http://docs.angularjs.org/api/ng.$cacheFactory",
"!doc": "Factory that constructs cache objects and gives access to them."
},
$compile: {
"!type": "fn(element: +Element, transclude: fn(scope: ?), maxPriority: number)",
"!url": "http://docs.angularjs.org/api/ng.$compile",
"!doc": "Compiles a piece of HTML string or DOM into a template and produces a template function."
},
$controller: {
"!type": "fn(controller: fn(), locals: ?) -> ?",
"!url": "http://docs.angularjs.org/api/ng.$controller",
"!doc": "Instantiates controllers."
},
$document: {
"!type": "jQuery.fn",
"!url": "http://docs.angularjs.org/api/ng.$document",
"!doc": "A jQuery (lite)-wrapped reference to the browser's window.document element."
},
$exceptionHandler: {
"!type": "fn(exception: +Error, cause?: string)",
"!url": "http://docs.angularjs.org/api/ng.$exceptionHandler",
"!doc": "Any uncaught exception in angular expressions is delegated to this service."
},
$filter: {
"!type": "fn(name: string) -> fn(input: string) -> string",
"!url": "http://docs.angularjs.org/api/ng.$filter",
"!doc": "Retrieve a filter function."
},
$http: {
"!type": "fn(config: ?) -> service.$q",
"!url": "http://docs.angularjs.org/api/ng.$http",
"!doc": "Facilitates communication with remote HTTP servers.",
"delete": "fn(url: string, config?: ?) -> +Promise",
get: "fn(url: string, config?: ?) -> +Promise",
head: "fn(url: string, config?: ?) -> +Promise",
jsonp: "fn(url: string, config?: ?) -> +Promise",
post: "fn(url: string, data: ?, config?: ?) -> +Promise",
put: "fn(url: string, data: ?, config?: ?) -> +Promise"
},
$interpolate: {
"!type": "fn(text: string, mustHaveExpression?: bool, trustedContext?: string) -> fn(context: ?) -> string",
"!url": "http://docs.angularjs.org/api/ng.$interpolate",
"!doc": "Compiles a string with markup into an interpolation function."
},
$locale: {
"!url": "http://docs.angularjs.org/api/ng.$locale",
id: "string"
},
$location: {
"!url": "http://docs.angularjs.org/api/ng.$location",
"!doc": "Parses the URL in the browser address bar.",
absUrl: {
"!type": "fn() -> string",
"!url": "http://docs.angularjs.org/api/ng.$location#absUrl",
"!doc": "Return full url representation."
},
hash: {
"!type": "fn(value?: string) -> string",
"!url": "http://docs.angularjs.org/api/ng.$location#hash",
"!doc": "Get or set the hash fragment."
},
host: {
"!type": "fn() -> string",
"!url": "http://docs.angularjs.org/api/ng.$location#host",
"!doc": "Return host of current url."
},
path: {
"!type": "fn(value?: string) -> string",
"!url": "http://docs.angularjs.org/api/ng.$location#path",
"!doc": "Get or set the URL path."
},
port: {
"!type": "fn() -> number",
"!url": "http://docs.angularjs.org/api/ng.$location#port",
"!doc": "Returns the port of the current url."
},
protocol: {
"!type": "fn() -> string",
"!url": "http://docs.angularjs.org/api/ng.$location#protocol",
"!doc": "Return protocol of current url."
},
replace: {
"!type": "fn()",
"!url": "http://docs.angularjs.org/api/ng.$location#replace",
"!doc": "Changes to $location during current $digest will be replacing current history record, instead of adding new one."
},
search: {
"!type": "fn(search: string, paramValue?: string) -> string",
"!url": "http://docs.angularjs.org/api/ng.$location#search",
"!doc": "Get or set the URL query."
},
url: {
"!type": "fn(url: string, replace?: string) -> string",
"!url": "http://docs.angularjs.org/api/ng.$location#url",
"!doc": "Get or set the current url."
}
},
$log: {
"!url": "http://docs.angularjs.org/api/ng.$log",
"!doc": "Simple service for logging.",
debug: {
"!type": "fn(message: string)",
"!url": "http://docs.angularjs.org/api/ng.$log#debug",
"!doc": "Write a debug message."
},
error: {
"!type": "fn(message: string)",
"!url": "http://docs.angularjs.org/api/ng.$log#error",
"!doc": "Write an error message."
},
info: {
"!type": "fn(message: string)",
"!url": "http://docs.angularjs.org/api/ng.$log#info",
"!doc": "Write an info message."
},
log: {
"!type": "fn(message: string)",
"!url": "http://docs.angularjs.org/api/ng.$log#log",
"!doc": "Write a log message."
},
warn: {
"!type": "fn(message: string)",
"!url": "http://docs.angularjs.org/api/ng.$log#warn",
"!doc": "Write a warning message."
}
},
$parse: {
"!type": "fn(expression: string) -> fn(context: ?, locals: ?) -> ?",
"!url": "http://docs.angularjs.org/api/ng.$parse",
"!doc": "Converts Angular expression into a function."
},
$q: {
"!type": "fn(executor: fn(resolve: fn(value: ?) -> +Promise, reject: fn(value: ?) -> +Promise)) -> +Promise",
"!url": "http://docs.angularjs.org/api/ng.$q",
"!doc": "A promise/deferred implementation.",
all: {
"!type": "fn(promises: [+Promise]) -> +Promise",
"!url": "http://docs.angularjs.org/api/ng.$q#all",
"!doc": "Combines multiple promises into a single promise."
},
defer: {
"!type": "fn() -> +Deferred",
"!url": "http://docs.angularjs.org/api/ng.$q#defer",
"!doc": "Creates a Deferred object which represents a task which will finish in the future."
},
reject: {
"!type": "fn(reason: ?) -> +Promise",
"!url": "http://docs.angularjs.org/api/ng.$q#reject",
"!doc": "Creates a promise that is resolved as rejected with the specified reason."
},
when: {
"!type": "fn(value: ?) -> +Promise",
"!url": "http://docs.angularjs.org/api/ng.$q#when",
"!doc": "Wraps an object that might be a value or a (3rd party) then-able promise into a $q promise."
}
},
$rootElement: {
"!type": "+Element",
"!url": "http://docs.angularjs.org/api/ng.$rootElement",
"!doc": "The root element of Angular application."
},
$rootScope: {
"!url": "http://docs.angularjs.org/api/ng.$rootScope",
$apply: {
"!type": "fn(expression: string)",
"!url": "http://docs.angularjs.org/api/ng.$rootScope.Scope#$apply",
"!doc": "Execute an expression in angular from outside of the angular framework."
},
$broadcast: {
"!type": "fn(name: string, args?: ?) -> eventObj",
"!url": "http://docs.angularjs.org/api/ng.$rootScope.Scope#$broadcast",
"!doc": "Dispatches an event name downwards to all child scopes."
},
$destroy: {
"!type": "fn()",
"!url": "http://docs.angularjs.org/api/ng.$rootScope.Scope#$destroy",
"!doc": "Removes the current scope (and all of its children) from the parent scope."
},
$digest: {
"!type": "fn()",
"!url": "http://docs.angularjs.org/api/ng.$rootScope.Scope#$digest",
"!doc": "Processes all of the watchers of the current scope and its children."
},
$emit: {
"!type": "fn(name: string, args?: ?) -> eventObj",
"!url": "http://docs.angularjs.org/api/ng.$rootScope.Scope#$emit",
"!doc": "Dispatches an event name upwards through the scope hierarchy."
},
$eval: {
"!type": "fn(expression: string) -> ?",
"!url": "http://docs.angularjs.org/api/ng.$rootScope.Scope#$eval",
"!doc": "Executes the expression on the current scope and returns the result."
},
$evalAsync: {
"!type": "fn(expression: string)",
"!url": "http://docs.angularjs.org/api/ng.$rootScope.Scope#$evalAsync",
"!doc": "Executes the expression on the current scope at a later point in time."
},
$new: {
"!type": "fn(isolate: bool) -> service.$rootScope",
"!url": "http://docs.angularjs.org/api/ng.$rootScope.Scope#$new",
"!doc": "Creates a new child scope."
},
$on: {
"!type": "fn(name: string, listener: fn(event: ?)) -> fn()",
"!url": "http://docs.angularjs.org/api/ng.$rootScope.Scope#$on",
"!doc": "Listens on events of a given type."
},
$watch: {
"!type": "fn(watchExpression: string, listener?: fn(), objectEquality?: bool) -> fn()",
"!url": "http://docs.angularjs.org/api/ng.$rootScope.Scope#$watch",
"!doc": "Registers a listener callback to be executed whenever the watchExpression changes."
},
$watchCollection: {
"!type": "fn(obj: string, listener: fn()) -> fn()",
"!url": "http://docs.angularjs.org/api/ng.$rootScope.Scope#$watchCollection",
"!doc": "Shallow watches the properties of an object and fires whenever any of the properties."
},
$id: {
"!type": "number",
"!url": "http://docs.angularjs.org/api/ng.$rootScope.Scope#$id",
"!doc": "Unique scope ID."
}
},
$sce: {
HTML: "string",
CSS: "string",
URL: "string",
RESOURCE_URL: "string",
JS: "string",
getTrusted: "fn(type: string, maybeTrusted: ?) -> !1",
getTrustedCss: "fn(maybeTrusted: ?) -> !0",
getTrustedHtml: "fn(maybeTrusted: ?) -> !0",
getTrustedJs: "fn(maybeTrusted: ?) -> !0",
getTrustedResourceUrl: "fn(maybeTrusted: ?) -> !0",
getTrustedUrl: "fn(maybeTrusted: ?) -> !0",
parse: "fn(type: string, expression: string) -> fn(context: ?, locals: ?) -> ?",
parseAsCss: "fn(expression: string) -> fn(context: ?, locals: ?) -> ?",
parseAsHtml: "fn(expression: string) -> fn(context: ?, locals: ?) -> ?",
parseAsJs: "fn(expression: string) -> fn(context: ?, locals: ?) -> ?",
parseAsResourceUrl: "fn(expression: string) -> fn(context: ?, locals: ?) -> ?",
parseAsUrl: "fn(expression: string) -> fn(context: ?, locals: ?) -> ?",
trustAs: "fn(type: string, value: ?) -> !1",
trustAsHtml: "fn(value: ?) -> !0",
trustAsJs: "fn(value: ?) -> !0",
trustAsResourceUrl: "fn(value: ?) -> !0",
trustAsUrl: "fn(value: ?) -> !0",
isEnabled: "fn() -> bool"
},
$templateCache: {
"!url": "http://docs.angularjs.org/api/ng.$templateCache",
"!proto": "cacheObj"
},
$timeout: {
"!type": "fn(fn: fn(), delay?: number, invokeApply?: bool) -> +Promise",
"!url": "http://docs.angularjs.org/api/ng.$timeout",
"!doc": "Angular's wrapper for window.setTimeout.",
cancel: "fn(promise: +Promise)"
},
$window: "<top>",
$injector: {
"!url": "http://docs.angularjs.org/api/AUTO.$injector",
"!doc": "Retrieve object instances as defined by provider.",
annotate: {
"!type": "fn(f: fn()) -> [string]",
"!url": "http://docs.angularjs.org/api/AUTO.$injector#annotate",
"!doc": "Returns an array of service names which the function is requesting for injection."
},
get: {
"!type": "fn(name: string) -> ?",
"!url": "http://docs.angularjs.org/api/AUTO.$injector#get",
"!doc": "Return an instance of a service."
},
has: {
"!type": "fn(name: string) -> bool",
"!url": "http://docs.angularjs.org/api/AUTO.$injector#has",
"!doc": "Allows the user to query if the particular service exist."
},
instantiate: {
"!type": "fn(type: fn(), locals?: ?) -> +!0",
"!url": "http://docs.angularjs.org/api/AUTO.$injector#instantiate",
"!doc": "Create a new instance of JS type."
},
invoke: {
"!type": "fn(type: fn(), self?: ?, locals?: ?) -> !0.!ret",
"!url": "http://docs.angularjs.org/api/AUTO.$injector#invoke",
"!doc": "Invoke the method and supply the method arguments from the $injector."
}
},
$provide: {
"!url": "http://docs.angularjs.org/api/AUTO.$provide",
"!doc": "Use $provide to register new providers with the $injector.",
constant: {
"!type": "fn(name: string, value: ?) -> !this",
"!effects": ["custom angular_regField"],
"!url": "http://docs.angularjs.org/api/AUTO.$provide#constant",
"!doc": "A constant value."
},
decorator: {
"!type": "fn(name: string, decorator: fn())",
"!effects": ["custom angular_regFieldCall"],
"!url": "http://docs.angularjs.org/api/AUTO.$provide#decorator",
"!doc": "Decoration of service, allows the decorator to intercept the service instance creation."
},
factory: {
"!type": "fn(name: string, providerFunction: fn()) -> !this",
"!effects": ["custom angular_regFieldCall"],
"!url": "http://docs.angularjs.org/api/AUTO.$provide#factory",
"!doc": "A short hand for configuring services if only $get method is required."
},
provider: {
"!type": "fn(name: string, providerType: fn()) -> !this",
"!effects": ["custom angular_regFieldCall"],
"!url": "http://docs.angularjs.org/api/AUTO.$provide#provider",
"!doc": "Register a provider for a service."
},
service: {
"!type": "fn(name: string, constructor: fn()) -> !this",
"!effects": ["custom angular_regFieldNew"],
"!url": "http://docs.angularjs.org/api/AUTO.$provide#provider",
"!doc": "Register a provider for a service."
},
value: {
"!type": "fn(name: string, object: ?) -> !this",
"!effects": ["custom angular_regField"],
"!url": "http://docs.angularjs.org/api/AUTO.$providevalue",
"!doc": "A short hand for configuring services if the $get method is a constant."
}
},
$cookies: {
"!url": "http://docs.angularjs.org/api/ngCookies.$cookies",
"!doc": "Provides read/write access to browser's cookies.",
text: "string"
},
$resource: {
"!type": "fn(url: string, paramDefaults?: ?, actions?: ?) -> +Resource",
"!url": "http://docs.angularjs.org/api/ngResource.$resource",
"!doc": "Creates a resource object that lets you interact with RESTful server-side data sources."
},
$route: {
"!url": "http://docs.angularjs.org/api/ngRoute.$route",
"!doc": "Deep-link URLs to controllers and views.",
reload: {
"!type": "fn()",
"!url": "http://docs.angularjs.org/api/ngRoute.$route#reload",
"!doc": "Reload the current route even if $location hasn't changed."
},
current: {
"!url": "http://docs.angularjs.org/api/ngRoute.$route#current",
"!doc": "Reference to the current route definition.",
controller: "?",
locals: "?"
},
routes: "[?]"
},
$sanitize: {
"!type": "fn(string) -> string",
"!url": "http://docs.angularjs.org/api/ngSanitize.$sanitize",
"!doc": "Sanitize HTML input."
},
$swipe: {
"!url": "http://docs.angularjs.org/api/ngTouch.$swipe",
"!doc": "A service that abstracts the messier details of hold-and-drag swipe behavior.",
bind: {
"!type": "fn(element: +Element, handlers: ?)",
"!url": "http://docs.angularjs.org/api/ngTouch.$swipe#bind",
"!doc": "Abstracts the messier details of hold-and-drag swipe behavior."
}
}
}
},
angular: {
bind: {
"!type": "fn(self: ?, fn: fn(), args?: ?) -> !custom:angular_bind",
"!url": "http://docs.angularjs.org/api/angular.bind",
"!doc": "Returns a function which calls function fn bound to self."
},
bootstrap: {
"!type": "fn(element: +Element, modules?: [string]) -> service.$injector",
"!url": "http://docs.angularjs.org/api/angular.bootstrap",
"!doc": "Use this function to manually start up angular application."
},
copy: {
"!type": "fn(source: ?, target?: ?) -> !0",
"!url": "http://docs.angularjs.org/api/angular.copy",
"!doc": "Creates a deep copy of source, which should be an object or an array."
},
element: {
"!type": "fn(element: +Element) -> jQuery.fn",
"!url": "http://docs.angularjs.org/api/angular.element",
"!doc": "Wraps a raw DOM element or HTML string as a jQuery element."
},
equals: {
"!type": "fn(o1: ?, o2: ?) -> bool",
"!url": "http://docs.angularjs.org/api/angular.equals",
"!doc": "Determines if two objects or two values are equivalent."
},
extend: {
"!type": "fn(dst: ?, src: ?) -> !0",
"!url": "http://docs.angularjs.org/api/angular.extend",
"!doc": "Extends the destination object dst by copying all of the properties from the src object(s) to dst."
},
forEach: {
"!type": "fn(obj: ?, iterator: fn(value: ?, key: ?), context?: ?) -> !0",
"!effects": ["call !1 this=!2 !0.<i> number"],
"!url": "http://docs.angularjs.org/api/angular.forEach",
"!doc": "Invokes the iterator function once for each item in obj collection, which can be either an object or an array."
},
fromJson: {
"!type": "fn(json: string) -> ?",
"!url": "http://docs.angularjs.org/api/angular.fromJson",
"!doc": "Deserializes a JSON string."
},
identity: {
"!type": "fn(val: ?) -> !0",
"!url": "http://docs.angularjs.org/api/angular.identity",
"!doc": "A function that returns its first argument."
},
injector: {
"!type": "fn(modules: [string]) -> service.$injector",
"!url": "http://docs.angularjs.org/api/angular.injector",
"!doc": "Creates an injector function"
},
isArray: {
"!type": "fn(val: ?) -> bool",
"!url": "http://docs.angularjs.org/api/angular.isArray",
"!doc": "Determines if a reference is an Array."
},
isDate: {
"!type": "fn(val: ?) -> bool",
"!url": "http://docs.angularjs.org/api/angular.isDate",
"!doc": "Determines if a reference is a date."
},
isDefined: {
"!type": "fn(val: ?) -> bool",
"!url": "http://docs.angularjs.org/api/angular.isDefined",
"!doc": "Determines if a reference is defined."
},
isElement: {
"!type": "fn(val: ?) -> bool",
"!url": "http://docs.angularjs.org/api/angular.isElement",
"!doc": "Determines if a reference is a DOM element."
},
isFunction: {
"!type": "fn(val: ?) -> bool",
"!url": "http://docs.angularjs.org/api/angular.isFunction",
"!doc": "Determines if a reference is a function."
},
isNumber: {
"!type": "fn(val: ?) -> bool",
"!url": "http://docs.angularjs.org/api/angular.isNumber",
"!doc": "Determines if a reference is a number."
},
isObject: {
"!type": "fn(val: ?) -> bool",
"!url": "http://docs.angularjs.org/api/angular.isObject",
"!doc": "Determines if a reference is an object."
},
isString: {
"!type": "fn(val: ?) -> bool",
"!url": "http://docs.angularjs.org/api/angular.isString",
"!doc": "Determines if a reference is a string."
},
isUndefined: {
"!type": "fn(val: ?) -> bool",
"!url": "http://docs.angularjs.org/api/angular.isUndefined",
"!doc": "Determines if a reference is undefined."
},
lowercase: {
"!type": "fn(val: string) -> string",
"!url": "http://docs.angularjs.org/api/angular.lowercase",
"!doc": "Converts the specified string to lowercase."
},
module: {
"!type": "fn(name: string, deps: [string]) -> !custom:angular_module",
"!url": "http://docs.angularjs.org/api/angular.module",
"!doc": "A global place for creating, registering and retrieving Angular modules."
},
Module: "Module",
noop: {
"!type": "fn()",
"!url": "http://docs.angularjs.org/api/angular.noop",
"!doc": "A function that performs no operations."
},
toJson: {
"!type": "fn(val: ?) -> string",
"!url": "http://docs.angularjs.org/api/angular.toJson",
"!doc": "Serializes input into a JSON-formatted string."
},
uppercase: {
"!type": "fn(string) -> string",
"!url": "http://docs.angularjs.org/api/angular.uppercase",
"!doc": "Converts the specified string to uppercase."
},
version: {
"!url": "http://docs.angularjs.org/api/angular.version",
full: "string",
major: "number",
minor: "number",
dot: "number",
codename: "string"
}
}
};
});