Rename non-api sub-namespace typedefs
This commit is contained in:
@@ -123,7 +123,7 @@ ol.xml.parse = function(xml) {
|
||||
* @param {function(this: T, Node, Array.<*>): (Array.<*>|undefined)}
|
||||
* valueReader Value reader.
|
||||
* @param {T=} opt_this The object to use as `this` in `valueReader`.
|
||||
* @return {ol.xml.Parser} Parser.
|
||||
* @return {ol.xmlParser} Parser.
|
||||
* @template T
|
||||
*/
|
||||
ol.xml.makeArrayExtender = function(valueReader, opt_this) {
|
||||
@@ -152,7 +152,7 @@ ol.xml.makeArrayExtender = function(valueReader, opt_this) {
|
||||
* object stack.
|
||||
* @param {function(this: T, Node, Array.<*>): *} valueReader Value reader.
|
||||
* @param {T=} opt_this The object to use as `this` in `valueReader`.
|
||||
* @return {ol.xml.Parser} Parser.
|
||||
* @return {ol.xmlParser} Parser.
|
||||
* @template T
|
||||
*/
|
||||
ol.xml.makeArrayPusher = function(valueReader, opt_this) {
|
||||
@@ -179,7 +179,7 @@ ol.xml.makeArrayPusher = function(valueReader, opt_this) {
|
||||
* top of the stack.
|
||||
* @param {function(this: T, Node, Array.<*>): *} valueReader Value reader.
|
||||
* @param {T=} opt_this The object to use as `this` in `valueReader`.
|
||||
* @return {ol.xml.Parser} Parser.
|
||||
* @return {ol.xmlParser} Parser.
|
||||
* @template T
|
||||
*/
|
||||
ol.xml.makeReplacer = function(valueReader, opt_this) {
|
||||
@@ -204,7 +204,7 @@ ol.xml.makeReplacer = function(valueReader, opt_this) {
|
||||
* @param {function(this: T, Node, Array.<*>): *} valueReader Value reader.
|
||||
* @param {string=} opt_property Property.
|
||||
* @param {T=} opt_this The object to use as `this` in `valueReader`.
|
||||
* @return {ol.xml.Parser} Parser.
|
||||
* @return {ol.xmlParser} Parser.
|
||||
* @template T
|
||||
*/
|
||||
ol.xml.makeObjectPropertyPusher = function(valueReader, opt_property, opt_this) {
|
||||
@@ -242,7 +242,7 @@ ol.xml.makeObjectPropertyPusher = function(valueReader, opt_property, opt_this)
|
||||
* @param {function(this: T, Node, Array.<*>): *} valueReader Value reader.
|
||||
* @param {string=} opt_property Property.
|
||||
* @param {T=} opt_this The object to use as `this` in `valueReader`.
|
||||
* @return {ol.xml.Parser} Parser.
|
||||
* @return {ol.xmlParser} Parser.
|
||||
* @template T
|
||||
*/
|
||||
ol.xml.makeObjectPropertySetter = function(valueReader, opt_property, opt_this) {
|
||||
@@ -272,11 +272,11 @@ ol.xml.makeObjectPropertySetter = function(valueReader, opt_property, opt_this)
|
||||
/**
|
||||
* Create a serializer that appends nodes written by its `nodeWriter` to its
|
||||
* designated parent. The parent is the `node` of the
|
||||
* {@link ol.xml.NodeStackItem} at the top of the `objectStack`.
|
||||
* {@link ol.xmlNodeStackItem} at the top of the `objectStack`.
|
||||
* @param {function(this: T, Node, V, Array.<*>)}
|
||||
* nodeWriter Node writer.
|
||||
* @param {T=} opt_this The object to use as `this` in `nodeWriter`.
|
||||
* @return {ol.xml.Serializer} Serializer.
|
||||
* @return {ol.xmlSerializer} Serializer.
|
||||
* @template T, V
|
||||
*/
|
||||
ol.xml.makeChildAppender = function(nodeWriter, opt_this) {
|
||||
@@ -305,7 +305,7 @@ ol.xml.makeChildAppender = function(nodeWriter, opt_this) {
|
||||
* @param {function(this: T, Node, V, Array.<*>)}
|
||||
* nodeWriter Node writer.
|
||||
* @param {T=} opt_this The object to use as `this` in `nodeWriter`.
|
||||
* @return {ol.xml.Serializer} Serializer.
|
||||
* @return {ol.xmlSerializer} Serializer.
|
||||
* @template T, V
|
||||
*/
|
||||
ol.xml.makeArraySerializer = function(nodeWriter, opt_this) {
|
||||
@@ -422,7 +422,7 @@ ol.xml.makeStructureNS = function(namespaceURIs, structure, opt_structureNS) {
|
||||
|
||||
/**
|
||||
* Parse a node using the parsers and object stack.
|
||||
* @param {Object.<string, Object.<string, ol.xml.Parser>>} parsersNS
|
||||
* @param {Object.<string, Object.<string, ol.xmlParser>>} parsersNS
|
||||
* Parsers by namespace.
|
||||
* @param {Node} node Node.
|
||||
* @param {Array.<*>} objectStack Object stack.
|
||||
@@ -445,7 +445,7 @@ ol.xml.parseNode = function(parsersNS, node, objectStack, opt_this) {
|
||||
/**
|
||||
* Push an object on top of the stack, parse and return the popped object.
|
||||
* @param {T} object Object.
|
||||
* @param {Object.<string, Object.<string, ol.xml.Parser>>} parsersNS
|
||||
* @param {Object.<string, Object.<string, ol.xmlParser>>} parsersNS
|
||||
* Parsers by namespace.
|
||||
* @param {Node} node Node.
|
||||
* @param {Array.<*>} objectStack Object stack.
|
||||
@@ -463,7 +463,7 @@ ol.xml.pushParseAndPop = function(
|
||||
|
||||
/**
|
||||
* Walk through an array of `values` and call a serializer for each value.
|
||||
* @param {Object.<string, Object.<string, ol.xml.Serializer>>} serializersNS
|
||||
* @param {Object.<string, Object.<string, ol.xmlSerializer>>} serializersNS
|
||||
* Namespaced serializers.
|
||||
* @param {function(this: T, *, Array.<*>, (string|undefined)): (Node|undefined)} nodeFactory
|
||||
* Node factory. The `nodeFactory` creates the node whose namespace and name
|
||||
@@ -503,7 +503,7 @@ ol.xml.serialize = function(
|
||||
|
||||
/**
|
||||
* @param {O} object Object.
|
||||
* @param {Object.<string, Object.<string, ol.xml.Serializer>>} serializersNS
|
||||
* @param {Object.<string, Object.<string, ol.xmlSerializer>>} serializersNS
|
||||
* Namespaced serializers.
|
||||
* @param {function(this: T, *, Array.<*>, (string|undefined)): (Node|undefined)} nodeFactory
|
||||
* Node factory. The `nodeFactory` creates the node whose namespace and name
|
||||
|
||||
Reference in New Issue
Block a user