fable 3.0.43 → 3.0.44
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -26,15 +26,20 @@ class FableServiceMetaTemplate extends libFableServiceBase
|
|
|
26
26
|
return this._MetaTemplateLibrary.addPattern(pPatternStart, pPatternEnd, pParser);
|
|
27
27
|
}
|
|
28
28
|
|
|
29
|
+
addPatternAsync(pPatternStart, pPatternEnd, pParser)
|
|
30
|
+
{
|
|
31
|
+
return this._MetaTemplateLibrary.addPatternAsync(pPatternStart, pPatternEnd, pParser);
|
|
32
|
+
}
|
|
33
|
+
|
|
29
34
|
/**
|
|
30
35
|
* Parse a string with the existing parse tree
|
|
31
36
|
* @method parseString
|
|
32
37
|
* @param {string} pString - The string to parse
|
|
33
38
|
* @return {string} The result from the parser
|
|
34
39
|
*/
|
|
35
|
-
parseString(pString, pData)
|
|
40
|
+
parseString(pString, pData, fCallback)
|
|
36
41
|
{
|
|
37
|
-
return this._MetaTemplateLibrary.parseString(pString, pData);
|
|
42
|
+
return this._MetaTemplateLibrary.parseString(pString, pData, fCallback);
|
|
38
43
|
}
|
|
39
44
|
}
|
|
40
45
|
|