islands/PPMemoizingIsland.st
changeset 642 77d5fddb6462
parent 454 a9cd5ea7cc36
--- a/islands/PPMemoizingIsland.st	Sat Mar 19 00:12:47 2016 +0100
+++ b/islands/PPMemoizingIsland.st	Wed Nov 14 13:01:14 2018 +0100
@@ -9,7 +9,20 @@
 	category:'PetitIslands-Parsers'
 !
 
-PPMemoizingIsland comment:'A PPMemoizingIsland is memoized version of PPIsland. Use this one, unless you don''t mind really bad performance. If the memoized version is not working flawlessly, its a bug!!

Please see help of the PPIsland for how to use...

Instance Variables
	memoizationDictionaries:		<Object>
	rootParser:		<Object>

memoizationDictionaries
	- memoization cache

rootParser
	- used for memoizing, once the root changes, flushes the caches
'
+PPMemoizingIsland comment:'A PPMemoizingIsland is memoized version of PPIsland. Use this one, unless you don''t mind really bad performance. If the memoized version is not working flawlessly, its a bug!!
+
+Please see help of the PPIsland for how to use...
+
+Instance Variables
+	memoizationDictionaries:		<Object>
+	rootParser:		<Object>
+
+memoizationDictionaries
+	- memoization cache
+
+rootParser
+	- used for memoizing, once the root changes, flushes the caches
+'
 !