diff --git a/repository/Pinocchio.package/PBlockContext.class/instance/freeze.st b/repository/Pinocchio.package/PBlockContext.class/instance/freeze.st index 7c93b897..2afb123b 100644 --- a/repository/Pinocchio.package/PBlockContext.class/instance/freeze.st +++ b/repository/Pinocchio.package/PBlockContext.class/instance/freeze.st @@ -2,5 +2,5 @@ freezing freeze | clone | clone := super freeze. - clone rawOuterScope: outerScope. + clone homeContext: homeContext. ^ clone \ No newline at end of file diff --git a/repository/Pinocchio.package/PBlockContext.class/methodProperties.json b/repository/Pinocchio.package/PBlockContext.class/methodProperties.json index 40d10d49..f860992f 100644 --- a/repository/Pinocchio.package/PBlockContext.class/methodProperties.json +++ b/repository/Pinocchio.package/PBlockContext.class/methodProperties.json @@ -4,7 +4,7 @@ "instance" : { "asAliased" : "ToonVerwaest 4/6/2010 17:16", "assignAt:in:to:" : "ToonVerwaest 3/25/2010 12:39", - "freeze" : "CamilloBruni 8/23/2010 22:35", + "freeze" : "ToonVerwaest 10/17/2010 23:43", "lookupAt:in:" : "ToonVerwaest 3/25/2010 12:39", "outerScope" : "ToonVerwaest 3/25/2010 12:39", "outerScope:" : "ToonVerwaest 3/25/2010 12:39", diff --git a/repository/Pinocchio.package/PContext.class/instance/freeze.st b/repository/Pinocchio.package/PContext.class/instance/freeze.st index 44502471..a8525067 100644 --- a/repository/Pinocchio.package/PContext.class/instance/freeze.st +++ b/repository/Pinocchio.package/PContext.class/instance/freeze.st @@ -1,7 +1,7 @@ freezing freeze | clone | - clone := self species new. - returnContext ifNotNil: [ clone returnContext: returnContext freeze ]. + clone := self species new: (self size). clone closure: closure. + clone returnContext: returnContext freeze. ^ clone \ No newline at end of file diff --git a/repository/Pinocchio.package/PContext.class/methodProperties.json b/repository/Pinocchio.package/PContext.class/methodProperties.json index 17ff17bf..edaa7adb 100644 --- a/repository/Pinocchio.package/PContext.class/methodProperties.json +++ b/repository/Pinocchio.package/PContext.class/methodProperties.json @@ -5,7 +5,7 @@ "asAliased" : "ToonVerwaest 10/13/2010 18:10", "closure" : "ToonVerwaest 3/25/2010 12:39", "closure:" : "ToonVerwaest 3/25/2010 12:39", - "freeze" : "CamilloBruni 8/23/2010 16:53", + "freeze" : "ToonVerwaest 10/18/2010 00:18", "homeContext" : "ToonVerwaest 3/25/2010 12:39", "homeContext:" : "ToonVerwaest 3/25/2010 12:39", "initialize" : "ToonVerwaest 9/22/2010 13:30", diff --git a/repository/Pinocchio.package/PException.class/methodProperties.json b/repository/Pinocchio.package/PException.class/methodProperties.json index dfcaa86e..5c2cd3ba 100644 --- a/repository/Pinocchio.package/PException.class/methodProperties.json +++ b/repository/Pinocchio.package/PException.class/methodProperties.json @@ -10,7 +10,7 @@ "environment:" : "ToonVerwaest 8/6/2010 19:51", "isResumable" : "ToonVerwaest 8/18/2010 16:22", "messageText" : "ToonVerwaest 8/18/2010 16:22", - "pinitialize" : "ToonVerwaest 9/24/2010 14:43", + "pinitialize" : "ToonVerwaest 10/18/2010 14:40", "printStacktraceOn:" : "CamilloBruni 8/23/2010 23:20", "privHandlerContext:" : "ToonVerwaest 8/18/2010 16:13", "psignal" : "ToonVerwaest 8/2/2010 11:34", diff --git a/repository/Pinocchio.package/PMethodContext.class/instance/initialize.st b/repository/Pinocchio.package/PMethodContext.class/instance/initialize.st index c8c48253..653edf60 100644 --- a/repository/Pinocchio.package/PMethodContext.class/instance/initialize.st +++ b/repository/Pinocchio.package/PMethodContext.class/instance/initialize.st @@ -2,4 +2,4 @@ initialize-release initialize super initialize. homeContext := self. - scopeId := 0. \ No newline at end of file + scopeId := 0 \ No newline at end of file diff --git a/repository/Pinocchio.package/PMethodContext.class/methodProperties.json b/repository/Pinocchio.package/PMethodContext.class/methodProperties.json index 27251f0c..0eec951b 100644 --- a/repository/Pinocchio.package/PMethodContext.class/methodProperties.json +++ b/repository/Pinocchio.package/PMethodContext.class/methodProperties.json @@ -5,7 +5,7 @@ "asAliased" : "ToonVerwaest 4/6/2010 17:16", "assignAt:in:to:" : "ToonVerwaest 8/18/2010 19:07", "freeze" : "CamilloBruni 8/23/2010 16:54", - "initialize" : "ToonVerwaest 8/23/2010 23:04", + "initialize" : "ToonVerwaest 10/17/2010 22:30", "lookupAt:in:" : "ToonVerwaest 8/18/2010 19:07", "methodClass" : "ToonVerwaest 4/6/2010 13:42", "printStacktraceOn:" : "CamilloBruni 8/23/2010 22:53", diff --git a/repository/Pinocchio.package/PNil.class/instance/freeze.st b/repository/Pinocchio.package/PNil.class/instance/freeze.st new file mode 100644 index 00000000..cbebd6bf --- /dev/null +++ b/repository/Pinocchio.package/PNil.class/instance/freeze.st @@ -0,0 +1,2 @@ +debugging +freeze \ No newline at end of file diff --git a/repository/Pinocchio.package/PNil.class/methodProperties.json b/repository/Pinocchio.package/PNil.class/methodProperties.json index e828639c..c381d3c5 100644 --- a/repository/Pinocchio.package/PNil.class/methodProperties.json +++ b/repository/Pinocchio.package/PNil.class/methodProperties.json @@ -4,6 +4,7 @@ "instance" : { "accept:" : "CamilloBruni 7/27/2010 15:10", "asString" : "ToonVerwaest 3/25/2010 12:39", + "freeze" : "ToonVerwaest 10/17/2010 22:47", "ifNil:" : "ToonVerwaest 3/25/2010 12:39", "ifNil:ifNotNil:" : "ToonVerwaest 3/25/2010 12:39", "ifNil:ifNotNilDo:" : "ToonVerwaest 8/2/2010 12:31", diff --git a/repository/Pinocchio.package/monticello.meta/version b/repository/Pinocchio.package/monticello.meta/version index b0de3ab7..2ea9efba 100644 --- a/repository/Pinocchio.package/monticello.meta/version +++ b/repository/Pinocchio.package/monticello.meta/version @@ -1 +1 @@ -(name 'Pinocchio-ToonVerwaest.597' message 'small cleanups' id 'a3be213d-b438-4255-8a2d-d07aba50484c' date '14 October 2010' time '6:53:14 am' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.596' message 'detail: show the name of class references when inspecting.' id '179e7f06-450a-4d77-85b9-38523e7b4f35' date '14 October 2010' time '6:34:11 am' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.595' message 'slight cleanup of the shell (in result; not necessarily code)' id 'cfaa6560-34d8-4d9f-b287-7635ef4195e3' date '14 October 2010' time '4:37:27 am' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.594' message 'fixing Super, again...' id 'ab93ade0-7eb8-43b8-83a0-5df3fd7302a5' date '14 October 2010' time '4:29:56 am' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.593' message 'slighty extended the alias model to make it more demoable' id '5b356d8e-0c1a-43a2-b2bb-18436d0cb8f8' date '14 October 2010' time '2:58:16 am' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.592' message 'more presentation cuts' id 'f980d113-1e1b-4b26-adae-f4055458b09a' date '14 October 2010' time '2:50:47 am' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.591' message 'fixed a test' id '11d9eb20-e3bb-4905-9fa4-1d740e9deac2' date '14 October 2010' time '1:30:18 am' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.590' message 'more demo-papercuts' id '68279570-0d89-40a9-becb-f0d938cf7274' date '14 October 2010' time '12:49:03 am' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.589' message 'fixed the alias interpreter.' id '1b29464f-3435-4849-b29e-48eef16292c5' date '13 October 2010' time '6:56:11 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.588' message 'fixing virgin load' id 'db523e8c-d23c-4215-866f-2bab59f17df5' date '12 October 2010' time '5:11:56 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.587' message 'renaming MainInterpreter to main (interpreter is already part of the package name)' id 'b5708e8b-2a9b-4807-93e6-9e529820edf2' date '30 September 2010' time '4:47:51 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.586' message 'decoupling pharoname / pinocchio names and exporting more consistently with nicer names.' id '3685db9f-1289-42e0-b128-7831cea47ed4' date '30 September 2010' time '3:07:41 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.584' message 'switching to method dictionary. (+ fixed symbol hash in C)' id '74602f61-5d77-444f-9780-860ba31fddf7' date '29 September 2010' time '1:47:46 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.583' message 'more papercuts' id 'cedd34a1-e591-450d-bef6-550a157d5d66' date '28 September 2010' time '2:43:12 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.582' message 'removing name from Info' id '01482812-1000-47bb-b233-f7965ba0cf25' date '28 September 2010' time '12:03:10 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.581' message 'ignore the native pointer for now in NativeMethod / ReflectionMethod' id '2e50e353-69df-454a-9fe2-40795e057474' date '28 September 2010' time '11:50:29 am' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.580' message 'fixing lots of "paper cuts". disabled stack trace for now since it isn''t properly working ...' id 'baf2ec11-9979-4b0f-9908-8ce703f3edbf' date '24 September 2010' time '3:20:32 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.579' message 'small changes, including fixes for the problem Erwann had with nested blocks (see C code)' id 'e08b5ffb-3f3c-4f48-81f2-aba90c2f8864' date '22 September 2010' time '1:34:13 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.578' message 'removing necessity of C support for swapInvokeNative' id '00137ebc-85f0-46c0-abd9-595f2cd9c83a' date '15 September 2010' time '1:36:15 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.577' message 'small fixes in the mceval' id '4ccbe951-9f68-4a8e-b24f-94cc72b57324' date '15 September 2010' time '12:20:29 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.576' message 'merged with EWE 555' id '0a58f3a4-a763-4651-9614-850ef3827dda' date '14 September 2010' time '2:49:05 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.575' message 'random small improvements' id '72b51d74-222a-4a4b-bbbb-6fb1e46198ac' date '13 September 2010' time '5:37:36 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.574' message 'fixing small random bugs for the MC Interpreter.' id 'beab1c7a-8daf-43d2-95e8-2fad0edf548b' date '13 September 2010' time '3:26:42 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.573' message 'small changes all around' id '61d70b4f-ff18-4a9c-9886-109c82083e78' date '10 September 2010' time '5:54:57 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.572' message 'adding package imports' id 'a5a19da4-8656-449b-abfb-54d8821d80ed' date '10 September 2010' time '9:05:33 am' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.571' message 'remove info from methodclosure' id '1658b24d-ce3d-4541-8e23-72aa31ea9f26' date '9 September 2010' time '3:32:25 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.570' message 'compile in threaded code as alternative for reflection and native methods.' id 'e7df78f6-ff2d-47e1-a4f1-bd1d6a78e696' date '9 September 2010' time '3:22:41 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-CamilloBruni.569' message 'fixing probing in PBenchmark' id 'db24b1a8-b579-45b9-9e34-8b21bcf8a0ad' date '8 September 2010' time '3:28:49 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-ToonVerwaest.568' message 'adding IdentityDict primitives. still have to switch to IdentityDictBuckets!' id 'e966ec83-0572-447a-87af-71990e802e57' date '8 September 2010' time '2:22:15 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.567' message 'removing tons of conversions' id '906190cb-df57-42e6-8911-464e37edc758' date '7 September 2010' time '4:06:49 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.566' message 'lots of small changes in parsing / AST generation and it''s related compilation.' id '93660388-27b1-42a1-bc8e-44802da13d94' date '7 September 2010' time '3:48:27 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.565' message 'changing the way names are created. moved more to the classlinker.' id '5d5968eb-f836-4c9b-b809-75116bc1c642' date '7 September 2010' time '2:44:36 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.564' message 'export the benchmarks ' id '620904db-2826-451d-a3c5-c57684c9ed41' date '6 September 2010' time '5:44:42 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.563' message 'trying to remove empty packages ... again?' id '61a8a2da-eaeb-4f57-adec-8a5524c12204' date '6 September 2010' time '4:42:20 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-CamilloBruni.562' message 'moving benchmarks around and adding them again to the exported basic classes' id 'a8b54a8d-bb10-490d-8edc-04b750a92744' date '6 September 2010' time '4:38:50 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-ToonVerwaest.561' message 'injecting more IdentityDictionaries. Fucking SymbolTable is SLOW!' id 'eb870834-3950-418c-a77c-af9b49f14d59' date '6 September 2010' time '4:33:18 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.560' message 'working towards decent methoddicts' id '5a7a1ca1-b909-4c31-82db-d49e025008d6' date '6 September 2010' time '3:38:40 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.559' message 'trying to get rid of empty categories' id '5daaf5e6-ade0-4de9-a35f-6e05465fc19f' date '6 September 2010' time '3:13:48 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.558' message 'trying to add as required package' id '745b7604-15d2-494a-bc58-e3f36ed634da' date '6 September 2010' time '11:27:57 am' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.557' message 'giving it yet another try' id '2503e5c5-c15d-4407-b047-45e4ca03ba44' date '6 September 2010' time '11:27:03 am' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.556' message 'trying to commit my changes again ...' id 'a9ff47c5-8148-4fd9-938e-005e84a140e1' date '6 September 2010' time '11:24:25 am' author 'ToonVerwaest' ancestors ((name 'Pinocchio-CamilloBruni.555' message 'adding required package PBenchmark again.' id 'f6f87db3-f639-4c2d-983a-f802703559ad' date '5 September 2010' time '10:44:43 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-CamilloBruni.554' message 'creating a cleaner version of PBenchmark without Pinocchio related code' id '4f4314ad-7183-47ad-88e3-ddc68e0d116a' date '5 September 2010' time '10:41:28 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-CamilloBruni.553' message 'removing dependency on PDictionary in PBenchmark' id 'b0835ffc-52cf-498c-a9ab-585516665a2e' date '5 September 2010' time '9:46:12 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-ewe.552' message 'Some progress on porting PWebSocket and PSocketStream.' id '9ce55333-d5fe-49c4-af5c-1ce2d5765283' date '2 September 2010' time '4:18:09 pm' author 'ewe' ancestors ((name 'Pinocchio-ewe.551' message 'changes on Socket: - nilling the handle on destroy - fixing and testing remotePort and remoteHost' id '7693289f-a792-45bd-b6b4-d030cece5c69' date '2 September 2010' time '1:49:55 pm' author 'ewe' ancestors ((name 'Pinocchio-DavidGurtner.550' message 'porting WebClient, work in progress. adding methods here and there... added PText/Text to linker as it failed exporting otherwise. ' id 'cb6c360f-aed4-46cc-8dce-5209bb92b5ae' date '1 September 2010' time '7:04:42 pm' author 'DavidGurtner' ancestors ((name 'Pinocchio-ewe.548' message 'work in progress' id 'fa7c2427-b631-4367-99b6-8f6da1800aa7' date '1 September 2010' time '8:39:33 am' author 'ewe' ancestors ((name 'Pinocchio-ToonVerwaest.547' message 'tons of small changes' id '4fb2c965-b119-48b1-903e-c39ce5e0ff5b' date '31 August 2010' time '5:19:20 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.546' message 'nicer benchmark inspection disabling the strange +/- char for now. too annoying.' id '0cf4c977-e866-473f-b255-a8d439735372' date '31 August 2010' time '3:04:52 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.545' message 'simplifying and improving the inspector protocol & performance' id 'ad6e0969-cb31-4328-8e16-cac6b14f8618' date '31 August 2010' time '2:41:10 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-CamilloBruni.544' message 'adding to:do: benchmark (still 10times slower there)' id '8a71a1b8-fd5f-4b47-833e-3e813f6eb10a' date '30 August 2010' time '9:47:38 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-CamilloBruni.543' message 'removing strange unicode character' id '87549052-82ad-460e-8493-5e2e0d91832f' date '30 August 2010' time '8:51:24 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-ewe.542' message 'Added concurrency.Semaphore and concurrency.AtomicBoolean' id 'd6419440-ec17-4e13-8d04-5edc83761316' date '30 August 2010' time '3:14:54 pm' author 'ewe' ancestors ((name 'Pinocchio-ToonVerwaest.541' message 'don''t support whitespace halfway floats' id '9a8accbe-dcc7-4bab-a596-9fb289fbb6b9' date '30 August 2010' time '1:43:36 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.540' message 'fixing float parsing and enabling it.' id '8d47172d-f4e8-4cc7-acce-a18eb5920d1d' date '30 August 2010' time '1:27:47 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-CamilloBruni.539' message 'reenabling to:do: opcodes. seems to break some functionality in the arrayed code (at:put:)' id '844b1b84-2ce6-494c-8ece-1b211166a186' date '29 August 2010' time '5:22 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-CamilloBruni.538' message 'adding more Float/Int support to make the Benchmarks work' id '306d56eb-10ed-4d39-b80a-40b542e158b0' date '28 August 2010' time '8:18:57 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-CamilloBruni.537' message 'adding basic float support' id '485b32bd-b4fa-4e03-b34f-8e7f13d1adb6' date '27 August 2010' time '10:43:21 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-CamilloBruni.536' message 'adding support for milliseconds and microseconds on Chronology.Time' id '7b198337-abab-4ee7-8dc4-c8888ca0ab20' date '27 August 2010' time '4:40:24 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-DavidGurtner.535' message 'Basic version of Date, Time and such working...' id 'f0f86ee0-a3d7-4844-b06f-1d8a88381441' date '26 August 2010' time '6:55:36 pm' author 'DavidGurtner' ancestors ((name 'Pinocchio-DavidGurtner.534' message 'More work on Date and Time' id '57b88236-579e-4222-8b47-ebcbe6731de0' date '25 August 2010' time '5:46:21 pm' author 'DavidGurtner' ancestors ((name 'Pinocchio-CamilloBruni.533' message 'first version of PBenchmark' id '9b2c517b-5c28-4dbe-9fef-55ccf7976ed5' date '25 August 2010' time '5:18:53 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-CamilloBruni.532' message 'trying to add PBenchmark dependency' id '7e631490-c7ca-409a-a844-dd411715f998' date '25 August 2010' time '5:17:56 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-CamilloBruni.531' message 'adding more benchmarks' id '8729ee8a-b383-4e38-8df5-52edc2eee7b4' date '25 August 2010' time '5:16:28 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-ToonVerwaest.530' message 'removing _ as valid assignment operator' id 'e796ade4-5466-4b16-b94a-642eb5dbd799' date '25 August 2010' time '3:54:38 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-CamilloBruni.529' message 'ctrl-k deletes till the end of line' id 'e689f97f-5a6a-4f84-9b99-076c3641890e' date '25 August 2010' time '3:50:32 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-CamilloBruni.528' message 'chaning end/start to line navigation and pageUp/Down to whole text navigation' id '5ab50847-6538-4cb1-95ed-7ad7d49cae24' date '25 August 2010' time '3:33:57 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-CamilloBruni.527' message 'adding more commandline navigation ctrl-a ctrl-e home end' id 'd6a2f1ec-62a4-4547-8c35-b47b84f5ec48' date '25 August 2010' time '3:23:05 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-ToonVerwaest.526' message 'fixing block format & empty substatements' id '54619a5a-c9b3-4ad8-bdf9-429ed7acefae' date '25 August 2010' time '2:30:02 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-CamilloBruni.525' message 'plugins on class side are now exported as well' id 'f7b10614-7176-4a45-a8ef-6b0c9dafdf48' date '25 August 2010' time '1:54:25 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-CamilloBruni.524' message 'merging with erwann' id '89201c54-4c64-41b2-95bc-4104fc48b851' date '25 August 2010' time '1:25:19 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-CamilloBruni.523' message 'extending the Pharo Scanner with ! and ? for selectors' id '18709ac5-6d32-423c-9743-c05295e5494a' date '25 August 2010' time '11:58:47 am' author 'CamilloBruni' ancestors ((name 'Pinocchio-CamilloBruni.522' message 'working on getting the TestCases working. replaced some valuesDo: with do: (valuesDo: doesn''t work on Sets)' id 'f0649e40-72b5-47ad-bf84-785563d530b9' date '24 August 2010' time '2:19:55 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-CamilloBruni.521' message 'fixing environment freezing for exceptions. added stacktrace printout to the shell' id '905c9068-5009-44d3-9d02-b76ab51a015c' date '23 August 2010' time '11:07:02 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-ToonVerwaest.520' message 'fixing PEG parent (hopefully) and fixing initialize to use bools in context objects' id '67aa6797-fd1c-4eb9-af28-1cebc26606b1' date '23 August 2010' time '11:05:09 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.519' message 'turn off printing the warning' id '2f4da5b1-7465-427d-9e4a-e710d7f1deb6' date '23 August 2010' time '11:01:41 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-CamilloBruni.518' message 'resetting the PEGParser as well' id 'f7f13054-b91e-4a98-a0bf-9d9331e5a88f' date '23 August 2010' time '12:01:23 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-CamilloBruni.517' message 'adding decent benchmark suite. some primitve string/number benchmarks are there already' id '7396951c-37f4-4691-83a2-5a9e0531b15e' date '21 August 2010' time '4:14:23 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-ToonVerwaest.516' message 'tiny readline changes' id '97e96da9-26e6-4956-9076-11c8cd6391b1' date '20 August 2010' time '2:23:40 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.515' message 'fixing dependencies between inputdriver / readline / stdin. inputdriver shouldn''t know about readline.' id '5a48e078-5e94-450a-bd19-aab26d0db07d' date '20 August 2010' time '2:20:30 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.514' message 'removing the native version of PDictionary>>at: since it''s inconsistent.' id '429dd21d-b18e-42e4-a9d3-404b0995a700' date '20 August 2010' time '12:09:51 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.513' message 'small stuff' id 'f327cbae-3236-431f-be3a-dd89f22a3898' date '20 August 2010' time '12:05:19 am' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.512' message 'fixed the bug I introduced.' id 'cbe17a24-bc99-4108-b008-460c0ccc2368' date '19 August 2010' time '11:59 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.511' message 'making omit the default for Character parsers; thus relieving the DSL a bit.' id 'd48afa37-ac23-4165-9ac6-2c97159962c8' date '19 August 2010' time '7:15:45 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.510' message 'optimizing the character parser by comparing integers 265''000 / 316''000' id 'b3641010-f95d-4744-bd56-a7ffbd28a61b' date '19 August 2010' time '5:27:50 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.509' message 'adding a character parser boosts speed back to (and beyond) the original speed. 256''000 / 310''000 chars/sec' id 'b9dc4942-04e1-448f-8a35-da8666c0bd96' date '19 August 2010' time '5:20:39 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.508' message 'improve the internal string API usage of the PEG. reduces speed by 10% which shouldn''t be the case on Pinocchio if we install the right primitives.' id '9d7a1f93-ed00-4b42-b5a6-9621f75fb2d6' date '19 August 2010' time '5:03:56 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.507' message 'relying more on Pharo natives in PEG parsing 307''000 chars/sec without AST generation 255''000 chars/sec with AST' id 'f8c2c88a-6271-4e84-bdfb-eddf018b3230' date '19 August 2010' time '4:34:46 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.506' message 'avoiding allocation by storing the longestmatch in the stringscanner' id '4a51f9d5-a3f5-4865-a0ce-8d6697576694' date '19 August 2010' time '2:57:53 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.505' message 'optimized, broke and fixed the PEG + its API. nil is now again a valid returnvalue for parsers.' id 'a1254739-f002-45a4-9396-87815d25518f' date '19 August 2010' time '1:35:14 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.504' message 'making threadedcompiler test subclass from compiler test. should be fixed but at least it runs for now.' id 'b9b86e3c-aabd-4be4-9264-baee42bc40e7' date '18 August 2010' time '11:19:24 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.503' message 'renaming SCParserTest to PSmalltalkParserTest' id 'cfa5e052-211e-4ad5-98fe-676b51bfa112' date '18 August 2010' time '11:16:24 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.502' message 'fixing parser tests' id 'd5c6df9e-5b2c-4a42-bb00-a4571de04100' date '18 August 2010' time '11:15:02 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.501' message 'making single-line repainting a bit more sane. multiline is still waaaay broken. Will wait for syntax-coloring to incorporate support for error repainting.' id 'e1288cc4-6dbc-4dc5-a7e7-1dc146488171' date '18 August 2010' time '11:09:05 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.500' message 'better errors for currently unsupported Array compilation' id '620449e7-4708-4052-a8f4-8005864bd2f3' date '18 August 2010' time '8:57:11 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.499' message 'making parser more pharo conform by allowing statements in brace expressions. not supported yet by the compiler though.' id 'e70af578-ff28-480c-b8c6-493d6b2e7449' date '18 August 2010' time '8:11:43 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.498' message 'clear failure before starting readline again.' id 'dc93c901-b86a-44d2-9e91-3c2a96ccc8f9' date '18 August 2010' time '7:22:04 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.497' message 'adding PHalt' id '846079d7-833d-4d04-a052-7c757b666163' date '18 August 2010' time '7:18:29 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.496' message 'nicer compilation errors' id 'b7b28a88-1d4d-44c1-8e19-b638c8be0e90' date '18 August 2010' time '6:47:05 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.495' message 'more error handling fixing the compiler-test class. still 4 broken tests; have to clean up that mess.' id 'ad443090-993c-4884-84d2-a7c457d0e30c' date '18 August 2010' time '6:40:05 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.494' message 'adding more exceptions' id '4bc8c566-04cf-4949-9d55-eda6ed2c18d0' date '18 August 2010' time '6:19:39 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.493' message 'fixing the error handling when reading from files' id '293d6f0c-5d53-45d4-adce-ece341f79712' date '18 August 2010' time '4:54:27 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.492' message 'more integration. remove the currentInfo and just install it in methods.' id 'f1cc9ed8-7681-448d-9c27-95984c8ec0a2' date '18 August 2010' time '4:48:59 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.491' message 'better pharo integration for exceptions started splitting the parser into multiple malleable classes' id '62d1db5e-1ca6-4663-9668-dd92b1b98fff' date '18 August 2010' time '4:23:15 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.490' message 'trying an incremental paint for better performance' id '120e2ba3-4c1d-4c86-a6e9-34d66ba3047a' date '18 August 2010' time '11:12:28 am' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.489' message 'just highlight the first character where parsing fails. currently repaints the whole text each time' id '8d003e4a-25b3-485a-92de-9d9312483071' date '17 August 2010' time '4:54:52 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.488' message 'ignore tab' id '7cf4c09a-efd5-4f90-93a1-6f4ab46ef4dc' date '17 August 2010' time '3:15:17 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.487' message 'trying to fix the parser by adding a DLL test. seems to be doing something ..' id '5ac63982-3452-4ac9-801e-a68ca1d2740b' date '17 August 2010' time '3:03:26 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.486' message 'abstracted out the PText to rely on the doublebuffer. might recode to use standard smalltalk text.' id '256a3561-9cd8-43c4-bff9-bd976b9ecb75' date '17 August 2010' time '2:36:13 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.485' message 'started work on error highlighting' id '7c3058a2-d1e9-4b38-9946-8a68ee18d6ac' date '17 August 2010' time '2:07:41 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-CamilloBruni.484' message 'ignoring $[ in CSI mode to support crappy ITerm on OSX' id '7ea30aa0-2a0f-40ff-801d-d34fc78e2161' date '17 August 2010' time '11:30:35 am' author 'CamilloBruni' ancestors ((name 'Pinocchio-CamilloBruni.483' message 'ignoring $[ in CSI mode to support crappy ITerm on OSX' id '26b672f2-85c5-4af2-9033-6e7b60ad6aad' date '17 August 2010' time '11:27:16 am' author 'CamilloBruni' ancestors ((name 'Pinocchio-ToonVerwaest.482' message 'merging with erwann''s code + adding initial termcap multiline REPL support' id 'edd18384-a113-41fe-9e36-c196050e815d' date '17 August 2010' time '11:04:06 am' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.481' message 'merging with erwann''s code + adding initial termcap multiline REPL support' id '9041850c-ac71-4460-94db-bf16eba6fe16' date '17 August 2010' time '11:00:35 am' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.480' message 'erwann + termcap multiline repl' id 'a3f6922d-4db2-46fd-a7f4-2682699be474' date '17 August 2010' time '10:59:40 am' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.479' message 'merging with erwann + termcap multiline REPL' id '6febcf33-0511-4a70-a2e5-41f8f212a3c8' date '17 August 2010' time '10:59:05 am' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.478' message 'merging with erwann''s code + adding initial termcap multiline REPL support' id 'f7391d7f-3b8a-4f07-91e0-e473d4517c7a' date '17 August 2010' time '10:58:38 am' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ewe.477' message 'Merge changes in PSocket and PSocketStream' id '45a2e421-8f8d-40be-88fc-f3664e56ef3a' date '16 August 2010' time '2:58:48 pm' author 'ewe' ancestors ((name 'Pinocchio-ewe.430' message 'Auto Commit on Exporting Pinocchio' id '684e36ba-59bf-4c35-958b-0d595e4440a7' date '13 August 2010' time '2:28:56 pm' author 'ewe' ancestors ((name 'Pinocchio-ewe.429' message 'Auto Commit on Exporting Pinocchio' id '2a22776a-c8c4-4801-b49a-396a8aa13cf7' date '12 August 2010' time '3:10:47 pm' author 'ewe' ancestors ((name 'Pinocchio-ewe.428' message 'Auto Commit on Exporting Pinocchio' id '2d8039bb-d1e0-4c16-9299-31d4c03c4438' date '12 August 2010' time '3:05:23 pm' author 'ewe' ancestors ((name 'Pinocchio-ewe.427' message 'Auto Commit on Exporting Pinocchio' id 'f300f659-c271-41be-b492-15ed326f0527' date '12 August 2010' time '2:41:04 pm' author 'ewe' ancestors ((name 'Pinocchio-ewe.426' message 'Auto Commit on Exporting Pinocchio' id 'a30e1655-0878-4999-b187-ba067ae2deaf' date '12 August 2010' time '12:15:34 pm' author 'ewe' ancestors ((name 'Pinocchio-ewe.425' message 'Auto Commit on Exporting Pinocchio' id '6b9f49e6-e62c-4347-87f0-6fc0a02de404' date '12 August 2010' time '12:14:42 pm' author 'ewe' ancestors ((name 'Pinocchio-ewe.424' message 'Auto Commit on Exporting Pinocchio' id 'ff0de24f-e773-4af9-8af9-d39f0824d067' date '12 August 2010' time '12:12:48 pm' author 'ewe' ancestors ((name 'Pinocchio-ewe.423' message 'Auto Commit on Exporting Pinocchio' id 'd1df48e4-b137-4c4b-b62b-4d44a9d90821' date '12 August 2010' time '12:05:37 pm' author 'ewe' ancestors ((name 'Pinocchio-ewe.422' message 'Auto Commit on Exporting Pinocchio' id '3feb3ab4-0499-42cd-a397-478e7d45e8ab' date '11 August 2010' time '4:27:04 pm' author 'ewe' ancestors ((name 'Pinocchio-ewe.421' message 'Auto Commit on Exporting Pinocchio' id 'f1baa5fa-a3c8-435f-ae3b-24051078f419' date '11 August 2010' time '11:45:34 am' author 'ewe' ancestors ((name 'Pinocchio-ewe.420' message 'Auto Commit on Exporting Pinocchio' id '5fd708fa-aa7e-4155-b1b5-be60a339b38d' date '11 August 2010' time '11:44:14 am' author 'ewe' ancestors ((name 'Pinocchio-ewe.419' message 'Auto Commit on Exporting Pinocchio' id '098833a0-4478-4098-ab4b-a2b89c5e55e7' date '11 August 2010' time '11:43:04 am' author 'ewe' ancestors ((name 'Pinocchio-ewe.418' message 'Auto Commit on Exporting Pinocchio' id 'ac9b1cca-ee2b-4fb0-83b5-c8a7c32fe552' date '11 August 2010' time '11:31:55 am' author 'ewe' ancestors ((name 'Pinocchio-ewe.417' message 'Auto Commit on Exporting Pinocchio' id 'ae158bbe-e444-426b-b481-aba742cbe27e' date '10 August 2010' time '12:12:27 pm' author 'ewe' ancestors ((name 'Pinocchio-ewe.416' message 'Auto Commit on Exporting Pinocchio' id 'ec83d81a-a6e8-4f44-be47-62215e9911bd' date '10 August 2010' time '11:08:51 am' author 'ewe' ancestors ((name 'Pinocchio-ewe.415' message 'Auto Commit on Exporting Pinocchio' id '89e3d766-eb1e-4d73-a4f7-953fe5bf6f6b' date '10 August 2010' time '10:54:35 am' author 'ewe' ancestors ((name 'Pinocchio-ewe.414' message 'Auto Commit on Exporting Pinocchio' id '30656cff-9123-4bdb-8af4-860e8b6c09ba' date '9 August 2010' time '4:31:28 pm' author 'ewe' ancestors ((name 'Pinocchio-ewe.413' message 'Auto Commit on Exporting Pinocchio' id '5e41d95f-5e80-488c-8436-51289f72fdde' date '9 August 2010' time '4:07:15 pm' author 'ewe' ancestors ((name 'Pinocchio-ewe.412' message 'Auto Commit on Exporting Pinocchio' id '88a35b8f-8ed6-43c3-bf65-7196749ff15c' date '9 August 2010' time '3:21:58 pm' author 'ewe' ancestors ((name 'Pinocchio-ewe.411' message 'Auto Commit on Exporting Pinocchio' id '6ab9c012-ac8b-4380-8046-9453fa3762f2' date '9 August 2010' time '2:58:43 pm' author 'ewe' ancestors ((name 'Pinocchio-ewe.410' message 'Auto Commit on Exporting Pinocchio' id 'b5bdece8-6d84-4ec1-9df1-39aa9c6a3dde' date '9 August 2010' time '2:44:02 pm' author 'ewe' ancestors ((name 'Pinocchio-ewe.409' message 'Auto Commit on Exporting Pinocchio' id '4cdb7c07-3578-4fb6-8bfa-dcf25094239e' date '9 August 2010' time '1:50:03 pm' author 'ewe' ancestors ((name 'Pinocchio-ewe.408' message 'Auto Commit on Exporting Pinocchio' id '0d06f223-338f-45bb-8f7b-51b312be0541' date '9 August 2010' time '1:46:39 pm' author 'ewe' ancestors ((name 'Pinocchio-ewe.407' message 'Auto Commit on Exporting Pinocchio' id '60cf8c84-a5d8-4606-abdf-abb13a8f8434' date '9 August 2010' time '12:19:45 pm' author 'ewe' ancestors ((name 'Pinocchio-ewe.406' message 'Auto Commit on Exporting Pinocchio' id '4acf1876-b002-4b3a-977d-f73e379ca982' date '9 August 2010' time '12:18:53 pm' author 'ewe' ancestors ((name 'Pinocchio-ewe.405' message 'Auto Commit on Exporting Pinocchio' id 'ceda07d7-abe8-4742-ab2c-a3e4f1605dd0' date '9 August 2010' time '12:18:27 pm' author 'ewe' ancestors ((name 'Pinocchio-ewe.404' message 'Auto Commit on Exporting Pinocchio' id 'ea0f8c8f-88e3-4151-88c9-a2632cc0712d' date '9 August 2010' time '12:12:48 pm' author 'ewe' ancestors ((name 'Pinocchio-ewe.403' message 'Auto Commit on Exporting Pinocchio' id 'f1551c6b-f52c-4193-af68-9135fcebfe4b' date '9 August 2010' time '12:09:44 pm' author 'ewe' ancestors ((name 'Pinocchio-ewe.402' message 'Auto Commit on Exporting Pinocchio' id 'b42ebc89-b1f0-41ba-8672-99414b971511' date '9 August 2010' time '11:55:53 am' author 'ewe' ancestors ((name 'Pinocchio-ewe.401' message 'Auto Commit on Exporting Pinocchio' id 'dd31a646-a84b-4747-81f4-50eedbbc6c7b' date '9 August 2010' time '11:54:44 am' author 'ewe' ancestors ((name 'Pinocchio-ewe.400' message 'Auto Commit on Exporting Pinocchio' id '03332bb6-7082-4a83-9169-c711a862f0a3' date '9 August 2010' time '11:53:13 am' author 'ewe' ancestors ((name 'Pinocchio-ewe.399' message 'Auto Commit on Exporting Pinocchio' id '6f5fa62f-6c5d-4333-9f09-c8454132177a' date '9 August 2010' time '11:14:02 am' author 'ewe' ancestors ((name 'Pinocchio-ewe.398' message 'Auto Commit on Exporting Pinocchio' id '5f02a448-0e68-4b9e-935f-0ef38370a93f' date '9 August 2010' time '11:01:07 am' author 'ewe' ancestors ((name 'Pinocchio-ewe.397' message 'Auto Commit on Exporting Pinocchio' id '5efdec24-3447-4702-b58c-cd44b1a08dbe' date '5 August 2010' time '4:39:11 pm' author 'ewe' ancestors ((name 'Pinocchio-ewe.396' message 'Auto Commit on Exporting Pinocchio' id 'cc7c36f4-db34-4709-a803-68ab6a99f566' date '5 August 2010' time '4:27:17 pm' author 'ewe' ancestors ((name 'Pinocchio-ewe.395' message 'Auto Commit on Exporting Pinocchio' id 'ea54dae3-ee33-4dee-9de9-900191a0b141' date '5 August 2010' time '4:16:15 pm' author 'ewe' ancestors ((name 'Pinocchio-ewe.394' message 'Auto Commit on Exporting Pinocchio' id 'd20edd83-6501-42eb-9db5-b142be81eede' date '5 August 2010' time '4:13:46 pm' author 'ewe' ancestors ((name 'Pinocchio-ewe.393' message 'Auto Commit on Exporting Pinocchio' id 'eefbc475-bd3f-42bb-814e-8ef380277fae' date '5 August 2010' time '3:13:11 pm' author 'ewe' ancestors ((name 'Pinocchio-ewe.392' message 'Auto Commit on Exporting Pinocchio' id '32c27dbd-b537-4dca-9425-9c028d568fa5' date '5 August 2010' time '2:52:51 pm' author 'ewe' ancestors ((name 'Pinocchio-ewe.391' message 'Auto Commit on Exporting Pinocchio' id '58c17f1c-3fcb-4e7d-97ca-59b712c881b2' date '5 August 2010' time '2:45:23 pm' author 'ewe' ancestors ((name 'Pinocchio-ewe.390' message 'Auto Commit on Exporting Pinocchio' id '58c02376-01c1-4b4d-8377-5a72049a820f' date '5 August 2010' time '2:44:42 pm' author 'ewe' ancestors ((name 'Pinocchio-ewe.389' message 'Auto Commit on Exporting Pinocchio' id '6fae6ade-926e-44ba-989d-ea9533ff8950' date '5 August 2010' time '2:43:32 pm' author 'ewe' ancestors ((name 'Pinocchio-ewe.388' message 'Auto Commit on Exporting Pinocchio' id '50c1b2f5-834d-4434-b8b6-c9ab7f79d060' date '4 August 2010' time '4:09:48 pm' author 'ewe' ancestors ((name 'Pinocchio-ewe.387' message 'Auto Commit on Exporting Pinocchio' id 'c5849b44-a281-4572-9984-d949249db809' date '4 August 2010' time '3:51:21 pm' author 'ewe' ancestors ((name 'Pinocchio-ewe.386' message 'Auto Commit on Exporting Pinocchio' id '6fd1e644-de23-45f6-ad45-9ae2451a50d6' date '4 August 2010' time '3:45:48 pm' author 'ewe' ancestors ((name 'Pinocchio-ewe.385' message 'Auto Commit on Exporting Pinocchio' id '42100342-320c-45d0-af9a-2c7300174639' date '4 August 2010' time '2:57:57 pm' author 'ewe' ancestors ((name 'Pinocchio-ewe.367' message 'Auto Commit on Exporting Pinocchio' id 'ca06b488-de1b-4787-ab0e-8ba758429319' date '3 August 2010' time '3:14:16 pm' author 'ewe' ancestors ((name 'Pinocchio-ewe.366' message 'Auto Commit on Exporting Pinocchio' id '40df64a1-348e-439d-a14b-9596aa19aa6a' date '3 August 2010' time '3:03:04 pm' author 'ewe' ancestors ((name 'Pinocchio-ewe.365' message 'Auto Commit on Exporting Pinocchio' id '7ebe1ae2-b883-443a-83bf-1eb32652e5ab' date '2 August 2010' time '4:29:41 pm' author 'ewe' ancestors ((name 'Pinocchio-ewe.364' message 'Auto Commit on Exporting Pinocchio' id 'bd1fdd21-ccce-4e39-a4b6-8ead3d156208' date '2 August 2010' time '3:21:15 pm' author 'ewe' ancestors ((name 'Pinocchio-ewe.363' message 'Auto Commit on Exporting Pinocchio' id '2fc8e9c8-cd1b-4183-8818-0d3f66ea6c12' date '2 August 2010' time '3:10:33 pm' author 'ewe' ancestors ((name 'Pinocchio-CamilloBruni.362' message 'finally made it work again (in some cases I guess) => there are bugs in our IdentitySets and Dicts.' id 'c897fef5-c213-49eb-a900-a91b3abb5f9c' date '28 July 2010' time '1:15:20 am' author 'CamilloBruni' ancestors ((name 'Pinocchio-ToonVerwaest.361' message 'moving the PEGStack into the PEGStringScanner' id '7363b682-5166-44df-b2ac-be5ec9926963' date '28 July 2010' time '12:52:36 am' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.360' message 'committing the newly optimized PEG (faster than petit? :))' id '4f33c5a6-8b7a-4998-9b86-62ad85913c19' date '28 July 2010' time '12:19:23 am' author 'ToonVerwaest' ancestors ((name 'Pinocchio-CamilloBruni.359' message 'fixing some PSet/PDict implementation. tuning export by using our own Dicts/Sets' id '58103938-279f-4306-930d-58bffc4f00e5' date '27 July 2010' time '10:45:22 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-CamilloBruni.358' message 'new export mechanisms. using a separate id generator to cleanup the code duality' id 'fdd7405f-6601-4a95-b0e3-04456cb67615' date '27 July 2010' time '10:12:22 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-CamilloBruni.357' message 'refactoring id generation' id 'ccb005cd-8206-46f0-8757-11bcb42464c5' date '27 July 2010' time '11:43:41 am' author 'CamilloBruni' ancestors ((name 'Pinocchio-ToonVerwaest.356' message 'moving instantiation code to layout' id '2d698bf6-2b21-4fd9-bdb2-511602f3559c' date '26 July 2010' time '7:16:05 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.353' message 'ast changes' id '01098398-5a90-4077-8010-f89b7f96ff43' date '26 July 2010' time '9:30:31 am' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ewe.352' message 'fixing inlined C code indentation mistakes' id 'cef27a75-963e-4902-8c0c-e541a910d9cc' date '22 July 2010' time '3:51:33 pm' author 'ewe' ancestors ((name 'Pinocchio-ewe.351' message 'fixing plugin exproter and pprocess to always return from native.' id '1ccc837f-dda5-497a-8656-70f7492f1447' date '22 July 2010' time '3:50:42 pm' author 'ewe' ancestors ((name 'Pinocchio-ewe.350' message 'Merged with David''s socket implementation' id '8be6fe7b-2a1b-4dfa-9a0e-6197cb40df7c' date '22 July 2010' time '3:06:57 pm' author 'ewe' ancestors ((name 'Pinocchio-ewe.349' message 'Merged with David''s socket implementation' id 'cb97ea0b-3037-46bb-90b7-a74fe12f3929' date '22 July 2010' time '3:06:14 pm' author 'ewe' ancestors ((name 'Pinocchio-ewe.348' message 'Merged with David''s socket implementation' id 'd2f0cd3c-9856-4ebb-9760-f109dbc0c076' date '22 July 2010' time '3:05:36 pm' author 'ewe' ancestors ((name 'Pinocchio-ewe.346' message 'adding support for green threads' id 'bff33f1a-d534-4950-8dfe-136e3dc2e01f' date '22 July 2010' time '3:01:27 pm' author 'ewe' ancestors ((name 'Pinocchio-CamilloBruni.345' message 'adding check for assign ast minor formatting' id 'a3813a66-e915-46f2-ab5e-d8f0c66d3914' date '21 July 2010' time '5:00:22 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-CamilloBruni.344' message 'making local variables work again' id '54d3c4d0-e5a1-4d34-b14e-e536809f17f9' date '21 July 2010' time '3:31:50 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-CamilloBruni.343' message 'soem formatting in SCParser' id 'c9aea378-94ec-4d6f-94a7-d22df2b23319' date '21 July 2010' time '1:40:18 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-CamilloBruni.342' message 'Symbols have now decent C identifiers whenever possible' id '398b8106-f907-469f-a4ea-fe113d7533b9' date '21 July 2010' time '1:28:27 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-CamilloBruni.341' message 'adding dynamic variables to the main interpreter' id '6ec1b554-ab89-41ab-afc8-07075e914a7e' date '20 July 2010' time '4:12:54 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-CamilloBruni.340' message 'adding local coverage methods on TestCase to *Pinocchio' id '97c636b1-6175-4a70-b9b3-cb6c8c999d67' date '19 July 2010' time '1:34:34 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-CamilloBruni.339' message 'fixing export issues with TestRunner and related Classes fixed wrong type of the thhreadedcode in the exported C code' id 'bdb46530-a9db-49f0-ae9d-0e56f806da79' date '19 July 2010' time '1:23:17 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-ToonVerwaest.338' message '' id '8feba7e2-77dc-4d32-94f8-2cfcb3373490' date '14 July 2010' time '11:15:21 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-CamilloBruni.337' message 'moving errorHandler accessors on the Excpetion class' id 'd92b5a96-8331-4d15-aa2a-61456ce9fb4d' date '14 July 2010' time '1:08:43 am' author 'CamilloBruni' ancestors ((name 'Pinocchio-ToonVerwaest.336' message 'adding a PThread for future use' id 'bb8c40b0-9052-4add-a023-b42576fa8162' date '12 July 2010' time '9:03:20 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.335' message 'small optimization' id 'c96ab50f-9990-4a94-9cc1-9c365e0d9dba' date '26 June 2010' time '12:39:05 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.334' message 'turn off cachecounters' id '2b19ae60-a408-4cba-9242-63ddf407b9ff' date '26 June 2010' time '12:27:02 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.333' message 'doh :) that was broken' id '2de8a876-4751-4186-87db-ec31dde14f6b' date '26 June 2010' time '12:16:53 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.332' message 'almost more scopedExpression earlier' id 'a5c79cda-9241-4379-8f77-75ca1b9751ae' date '26 June 2010' time '12:08:53 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.331' message 'doh! made a bug:)' id '826a9e4e-cc18-4dea-a72b-148d4bfba48e' date '26 June 2010' time '12:03:03 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.330' message 'forgot to turn of crappy streaming' id '520259f0-ce34-4224-8894-be4c3ce385f7' date '26 June 2010' time '11:57:41 am' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.329' message 'fixed the binaryObjectDescription crap' id '78f67e59-e64f-4b37-838a-7da735418373' date '26 June 2010' time '11:55:56 am' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.328' message '... and goodnight' id '86bf215e-f834-46fa-9b95-60e5bb19fbe4' date '26 June 2010' time '3:01:40 am' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.327' message 'small dependency changes' id '157454a7-7286-49da-aa72-630604fc030e' date '26 June 2010' time '2:48:42 am' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.326' message 'micro-optimizations' id 'e3f09887-a920-4714-95c7-a9e439046a73' date '26 June 2010' time '2:33:59 am' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.325' message 'fixed radix number parsing' id '1f861588-00c1-4af6-b62c-b665ced4c3fd' date '26 June 2010' time '2:27 am' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.324' message 'remove silly compile warning' id '92e44faf-36d2-4714-a390-79fb556af61f' date '26 June 2010' time '2:16:20 am' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.323' message 'more small changes' id 'b14438e7-887e-44d5-8a81-2c98f628adf7' date '26 June 2010' time '2:15:16 am' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.322' message 'now actually also enabled the faster version; and removed all other methods' id 'd033ae9c-73bd-494d-8fdb-79ff79c47211' date '26 June 2010' time '1:13:16 am' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.321' message 'slightly cleaned up version, don''t use fail blocks anymore...' id '57841103-757e-4f65-a755-c4ba13e8609e' date '26 June 2010' time '1:08:35 am' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.320' message 'don''t generate objects anymore unless requested' id '7871d0bb-1fa9-4b22-abdb-b47a299de53b' date '26 June 2010' time '12:33:44 am' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.319' message 'first version of the new PEG' id '9bc1bb10-deb0-400f-a1a7-b61ac6a3ffd8' date '25 June 2010' time '11:28:57 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.318' message 'committing a first version of the new parser' id 'da0031a0-3b24-43df-af20-7539b33b5229' date '25 June 2010' time '11:28:22 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.317' message 'intermediate commit' id '5b1adc21-9157-4fb3-ba87-7641cf4680fb' date '25 June 2010' time '7:07:58 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.316' message 'more optimizations. seems to highlight some bugs in the VM though...' id 'd86dc3fe-95e6-4441-9104-556e9b1046a6' date '24 June 2010' time '5:17:48 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.315' message 'new dep' id '618e2d60-328d-4e44-b42e-619f2b18ccdc' date '24 June 2010' time '4:04 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.314' message 'export optimizations' id '3cc9236a-9970-4208-b053-a83412e9ac5a' date '24 June 2010' time '3:58:19 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-CamilloBruni.313' message 'right deps now?' id 'e9740238-f8ee-4e6d-bca5-b72f0b1abccf' date '24 June 2010' time '12:44:12 am' author 'CamilloBruni' ancestors ((name 'Pinocchio-CamilloBruni.311' message 'adding better bracket index parsing' id 'd46f58bb-1fc2-4173-8d7f-3dd8655afffd' date '23 June 2010' time '9:28:05 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-CamilloBruni.310' message 'dont do string concatenation anymore in CDumpers' id '0f2adef0-249d-442d-9d41-ed0fba9a28b5' date '23 June 2010' time '6:33:25 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-CamilloBruni.309' message 'removing some transcript shows' id '6593ff5d-1e66-4706-82eb-b12d6db5b77f' date '23 June 2010' time '5:28:36 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-CamilloBruni.308' message 'removing boolean ifTrue:ifFalse natives. with almost no speed impact' id 'c9567226-d0fb-4fbe-91f7-7b99cc4e9c6c' date '23 June 2010' time '4:46:43 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-CamilloBruni.307' message 'fixing wrong iftrue iffalse threaded' id 'a294ea3d-70be-409a-98bd-789dcd1fc807' date '22 June 2010' time '3:27:24 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-CamilloBruni.306' message 'romeved some none performance increasing threaded codes (value_ hash) adding ifFalse:ifTrue: switch' id 'f41c8100-8a7c-41ac-9c1c-7904108e1c0a' date '22 June 2010' time '11:51:50 am' author 'CamilloBruni' ancestors ((name 'Pinocchio-CamilloBruni.305' message 'adding ?! as possible selector characters' id '5ce77d58-06fc-417e-aadc-65bcbd45fb76' date '19 June 2010' time '1:06:44 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-CamilloBruni.304' message 'adding braket syntax for at:put:' id '2d78fa61-d701-4760-bca5-839390fb51f5' date '18 June 2010' time '10:01:43 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-ToonVerwaest.303' message 'ifTrue: / ifFalse: is so difficult' id 'c4fb7432-ada2-491b-b0c0-06e3d36ea238' date '16 June 2010' time '4:45:46 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-CamilloBruni.302' message 'adding block_return' id 'c16062ab-f183-4472-8dbf-a032be948f6c' date '16 June 2010' time '2:34:50 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-ToonVerwaest.301' message 'adding method_returns ' id '0de55c65-69a8-43b0-9597-9f002b354589' date '16 June 2010' time '11:48:32 am' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.300' message 'disable mceval' id '3a07a0f0-25ef-4833-925e-1455a8d77f2d' date '14 June 2010' time '4:26:09 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-CamilloBruni.299' message 'adding MC save button' id '20748682-75ef-471c-9cbd-84386d9b5e54' date '14 June 2010' time '2:44:15 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-ToonVerwaest.298' message 'disable value' id '5b0ae2c9-7c71-470c-978b-aa05f41d9eef' date '14 June 2010' time '2:42:12 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-CamilloBruni.297' message 'fixing some tests adding send_value / send_hash bytecodes' id '59c6a9bb-3852-4875-8607-4a3ada0c3851' date '14 June 2010' time '12:05:44 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-CamilloBruni.290' message 'minor cleanup: created isUnscoped on PBlock' id '92adb7ea-953d-4a44-bd62-39aab086ceb5' date '11 June 2010' time '10:07:38 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-ToonVerwaest.289' message 'adding support for ifTrue:ifFalse:' id '8b0ffbfe-8c71-4664-85c7-c14160b47310' date '10 June 2010' time '6:36:36 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.288' message 'remove empty blocks (var indices are updated to take it into account.)' id '868c5099-be94-4837-9107-eb3a018b300f' date '10 June 2010' time '5:58:08 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.287' message 'only compile ifTrue in the ideal (common) case' id 'e018e511-73be-45ae-990b-aae3c87827d5' date '10 June 2010' time '4:53:31 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.286' message 'fix bug with comparison between number and symbol.' id 'e1a029a7-1800-480f-9439-e8e89fa1c70c' date '10 June 2010' time '4:35:28 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-CamilloBruni.285' message 'added ifTrue: check branch for testing bool branching threaded code' id 'ad17afd4-bf81-4fb0-b1ed-88028d6ae62c' date '10 June 2010' time '2:48:14 am' author 'CamilloBruni' ancestors ((name 'Pinocchio-CamilloBruni.284' message 'making threaded evaluation working:wq ' id '33201298-2471-41f8-b36c-0ab2c75d0c31' date '10 June 2010' time '1:27:07 am' author 'CamilloBruni' ancestors ((name 'Pinocchio-CamilloBruni.283' message 'adding some hooks to inspect the exported threaded code' id '4c4a3749-241f-4d85-a365-3811c3391c44' date '9 June 2010' time '11:18:59 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-CamilloBruni.282' message 'adding FunctionPointer type for ThreadedCompiler' id '13db6683-5cb9-49be-a40c-141939ef427f' date '9 June 2010' time '10:29:29 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-CamilloBruni.281' message 'merging' id 'a588c658-9982-4955-adec-09ac3f236017' date '9 June 2010' time '5:48:08 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-CamilloBruni.280' message 'removing some more package prefixes. typing the C output more' id '69ad3339-e1e2-4448-bf3e-17414b8dd80c' date '9 June 2010' time '4:53:28 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-CamilloBruni.279' message 'adding more tests for assignments and returns' id '532d9d12-6999-41f1-ae4a-63bb4880ec16' date '9 June 2010' time '3:17:50 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-CamilloBruni.278' message 'adding new tests' id 'a5ccd6ff-7ef3-47b9-b282-66e0b585837c' date '9 June 2010' time '2:58:53 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-ToonVerwaest.277' message 'should not pop between send arguments :)' id '903524b1-d831-4fba-b2dc-41179cba2b17' date '9 June 2010' time '2:51:35 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.276' message 'popping between expressions in a method' id '8c539783-cce3-4828-964a-e17c3e5e4f42' date '9 June 2010' time '2:39:15 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.275' message 'more changes' id 'cf03c7aa-f568-43e7-92bd-11e488ab5949' date '9 June 2010' time '2:09:16 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.274' message 'insert return instructions' id 'b4f8675f-e10b-4cac-9f6a-12b830533d71' date '9 June 2010' time '10:05:18 am' author 'ToonVerwaest' ancestors ((name 'Pinocchio-CamilloBruni.273' message 'making the threading compiler work on pinocchio side' id 'ff711596-38e9-4b12-8499-cb984bf90a99' date '8 June 2010' time '8:14:11 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-ToonVerwaest.272' message 'small changes' id 'd4a3216b-55fc-41e2-a73b-dba61f559efe' date '8 June 2010' time '5:52:28 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-CamilloBruni.271' message 'removing ThreadedMethod' id 'b5324370-6df9-4804-a82d-04221f1af06f' date '8 June 2010' time '4:45:39 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-CamilloBruni.270' message 'resetting all the UID counters before exporting' id '33b32234-a3a8-4146-a788-5114a9f5c2cc' date '8 June 2010' time '3:12:04 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-CamilloBruni.269' message 'adding simple tests for threaded compiler' id '9d7df425-7ecf-4b7d-80f6-a7971af113f1' date '8 June 2010' time '2:37:05 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-CamilloBruni.268' message 'removed package prefixes in the CDumper starting threaded compiler' id '2e170c1b-3182-4ef6-863d-f38e11db3567' date '8 June 2010' time '1:58:24 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-CamilloBruni.267' message 'resolving full package name properly for the completion list export' id '53e7fae7-08aa-4525-94f7-18843b5a9655' date '3 June 2010' time '10:36:57 am' author 'CamilloBruni' ancestors ((name 'Pinocchio-CamilloBruni.266' message 'generating an autocompletion file for rlwrap' id '4a67465e-094d-4d2f-b912-ee082b60b38e' date '3 June 2010' time '10:31:53 am' author 'CamilloBruni' ancestors ((name 'Pinocchio-ToonVerwaest.265' message 'starting to work on threaded code' id '4bfe96f8-b535-4d6a-aa1f-99001d16e649' date '1 June 2010' time '2:58:58 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-CamilloBruni.264' message 'addding new ThreadedMethod' id '459f025f-0338-446c-9ac5-328004c14cf8' date '1 June 2010' time '1:18:50 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-CamilloBruni.263' message 'working version of the terminal coloring' id '9a934c01-caa3-40ce-810f-2c5b6bb170f8' date '1 June 2010' time '12:11:51 am' author 'CamilloBruni' ancestors ((name 'Pinocchio-CamilloBruni.262' message 'adding terminal coloring' id 'a56ed881-1722-4206-9dbe-7dc79e79174c' date '31 May 2010' time '11:54:23 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-CamilloBruni.261' message 'adding first version of cleaned up testrunner' id '3acf1868-34a4-4999-a89a-fad837a38a04' date '31 May 2010' time '4:36 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-CamilloBruni.260' message 'starting testrunner implementation' id '82fb9c17-7286-43da-8b2f-2f9f4a66e67b' date '27 May 2010' time '12:02:50 am' author 'CamilloBruni' ancestors ((name 'Pinocchio-ToonVerwaest.259' message 'make float class external' id '615045c4-5d5f-441c-96aa-a3f411ee7e8d' date '26 May 2010' time '11:39:31 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-DavidGurtner.258' message 'fix for exporting non pinocchio packages.' id 'b9fad064-5bf5-4561-951f-ffcf34549abe' date '26 May 2010' time '5:18:58 pm' author 'DavidGurtner' ancestors ((name 'Pinocchio-ToonVerwaest.257' message 'removing stupid function calls' id '54514067-850f-4292-b529-5db0ef2e0f46' date '25 May 2010' time '10:59:26 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.256' message '2^8. more external instead of internal.' id 'fe95e69e-2b8f-4b90-a43a-916a27f72d89' date '25 May 2010' time '10:44:53 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.255' message 'more cleanup' id '58c85045-b0aa-472e-b4a0-957355c0b774' date '25 May 2010' time '8:30:43 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.254' message 'more magical classes' id '51293fc1-3634-40e2-bde2-ad40710cee35' date '25 May 2010' time '8:10:55 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.253' message 'making more classes be exported rather than manually created' id 'ddb2525a-ab89-4304-82db-cd0733248bfe' date '25 May 2010' time '8:04:37 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.252' message 'some more cleanup.' id '5fa43ccb-f174-4be0-870c-0e35818b35b0' date '21 May 2010' time '6:58:12 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.251' message 'using our own dogfood is more tasty ;)' id 'c8f579a1-db88-4c1a-ac0a-2eb5bea51921' date '21 May 2010' time '6:41:54 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.250' message 'small cleanup' id '4d3ea05d-2d76-4759-9c8c-ec6b92ebd433' date '21 May 2010' time '6:25:57 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.249' message 'fixing exporters to all use PharoExporter rather than the test exporter.' id '0fd64f8b-cbfd-40a7-87d6-b7ac6425d7fc' date '21 May 2010' time '6:06:10 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.248' message 'nice dictionary and set inspection' id 'c3603947-fe48-4f7d-924f-a4e212a658fc' date '21 May 2010' time '5:59:18 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.247' message 'fixing exporting of globals; don''t overwrite them later on ...' id '88210393-518b-43b8-a39e-16df545e7c09' date '21 May 2010' time '5:25:22 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.246' message 'cleanup' id 'd2e07d10-5965-474a-8ebe-007dde4aa041' date '20 May 2010' time '8:39:36 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.245' message 'removing as many accessor methods as possible; trying to see what the real API is here...' id '06edd2ba-d340-4a27-82b2-dd22c80de3c5' date '20 May 2010' time '8:29:43 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.244' message 'more cleanup' id '176885bc-b7b9-4f2b-b000-9c8ea5c1c56f' date '20 May 2010' time '8:20:07 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.243' message 'more cleanup work; lets disable those halts for now.' id 'eb400631-84ed-43c8-aa26-fea12c02dfee' date '20 May 2010' time '8:08:58 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.242' message 'more refactoring, actually streaming rather than appending strings...' id 'c027483d-4b62-4c9c-8a5a-7d473a5f7546' date '20 May 2010' time '6:33:16 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.241' message 'more cleanup work' id '4908238f-2a42-4849-bb9d-a552ca77df9f' date '20 May 2010' time '6:09:56 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.240' message 'lots of intermediate upgrades to exporting. removed the test exporter and cleaned up the main exporting system' id 'cf5ba95b-3e46-4989-9189-76e10728a637' date '20 May 2010' time '5:24:17 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.239' message 'extern in lib.h! some small fixes. need to figure out why slot objects are duplicated!' id '76af73c9-962a-4529-8808-3bca10340b3a' date '20 May 2010' time '3:52:44 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-CamilloBruni.238' message 'changed gofer from load to update, see if that helps' id 'c1b05ca4-3a80-4d4d-a898-1f69d3076f6a' date '20 May 2010' time '1:50:49 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-CamilloBruni.236' message 'fixed wrongly named methods for updating' id '567fb54c-62d8-4cd5-89de-2550706eb0c9' date '20 May 2010' time '1:27:55 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-ToonVerwaest.235' message 'adding self and info to the list of cool classes.' id '447d3c7f-864b-41db-b384-66fbaf41275e' date '20 May 2010' time '1:10:40 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.234' message 'pharo support for lots of code lost in C' id '9dcce168-0370-4cac-b277-cf6b6404d5ef' date '20 May 2010' time '12:56:48 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.233' message 'lots of work on exporting more metadata rather than relying on what''s in the C code. now all meta-layouts are also shared (except Behavior/Class don''t yet take their instvars from Object class... Maybe do this in C?' id '6c4bc4fd-92cd-4840-a163-3f356ff534d8' date '20 May 2010' time '2:43:03 am' author 'ToonVerwaest' ancestors ((name 'Pinocchio-CamilloBruni.232' message 'adding benchmark facilities' id 'a2c5c771-627e-4b10-868c-6f259748a7fe' date '19 May 2010' time '6:40:27 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-ToonVerwaest.231' message 'parse comments too' id '88373dc1-cd64-4f20-9bc9-c099cc1745c9' date '18 May 2010' time '3:24:25 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.230' message 'ensure that parsing fails when there is a bug in the code somewhere...' id '2547035f-dcc2-49ed-bcbf-cfe48132d540' date '18 May 2010' time '3:19:45 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.229' message 'save the VERSION file; used for packaging.' id '624420e3-4195-48e1-b277-87e4ec90a245' date '18 May 2010' time '2:59:03 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.227' message 'fixing slot code' id '18e1e3d1-4e02-4023-9002-fae8fc0de3cf' date '18 May 2010' time '8:49:43 am' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.226' message 'more work on DSL' id 'f65e26f8-5c83-44f4-9b46-62e89b68e7bc' date '17 May 2010' time '10:41:10 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.225' message 'more work towards a first dsl' id 'bbdf111f-00ad-4233-a473-ca010c1df0dd' date '17 May 2010' time '7:48:56 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.224' message 'reenabling the primitive tags.' id '96d6cee3-8d56-48c3-9370-bb5d26c7f6cb' date '17 May 2010' time '5:52:25 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.223' message 'trying to fix the bug of erwann' id '345fbb01-e70d-4553-85e5-8895a3759e6f' date '17 May 2010' time '4:19:04 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-CamilloBruni.222' message 'changes??' id '65b6f117-a5d1-4a8c-bfcd-fa7caf4800a1' date '17 May 2010' time '4:04:20 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-CamilloBrun.221' message 'added default fib implementation on Number' id '92179d2c-8072-4770-9b5f-8ded16c30816' date '17 May 2010' time '1:37:37 pm' author 'CamilloBrun' ancestors ((name 'Pinocchio-CamilloBrun.220' message 'adding output to automated export' id 'ebb89e0a-be3c-4147-9918-dad08aa30619' date '17 May 2010' time '1:02:18 pm' author 'CamilloBrun' ancestors ((name 'Pinocchio-CamilloBruni.219' message 'adding auto export method' id '750f909d-c8ee-4e9e-ba7e-2dd82701b37b' date '17 May 2010' time '11:42:42 am' author 'CamilloBruni' ancestors ((name 'Pinocchio-CamilloBruni.218' message 'preparing for automated export' id 'a0991b95-65fc-44d2-b3e5-ecb71873b9e1' date '17 May 2010' time '11:36:29 am' author 'CamilloBruni' ancestors ((name 'Pinocchio-CamilloBruni.217' message 'adding some more shortcuts' id '9017d99b-81c3-4c9c-8c17-da6536fd0927' date '17 May 2010' time '10:58:08 am' author 'CamilloBruni' ancestors ((name 'Pinocchio-DavidGurtner.216' message 'replaced = on PPexMatcher with be: as = could return nil, which lead to issues. A bunch of tests might need fixing now.' id 'e854c8b7-4f2a-40a2-af7e-bc03c643fb82' date '13 May 2010' time '3:02:30 pm' author 'DavidGurtner' ancestors ((name 'Pinocchio-ToonVerwaest.215' message 'more natives' id '37f35dbc-db96-41cd-9094-de933beccafc' date '11 May 2010' time '8:15:40 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.214' message 'native booleans make me fastly happy' id '6518253b-b29a-4f86-ab9a-c29a0ba0ecac' date '11 May 2010' time '8:11:49 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.213' message 'small fixes and work on a language skin for smalltalk classes... should think more about it though' id 'c8b874de-d998-4da9-a115-6842436b7ce0' date '11 May 2010' time '5:15:33 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.212' message 'polymorphic inline caches.' id '3779ec2a-26a3-46df-8779-e6c3dfcb960b' date '10 May 2010' time '10:38:01 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-CamilloBruni.211' message 'Toon added auto inspect in the main Interpreter' id '852e3a74-2238-41f6-8ca7-7ea699d7bb21' date '10 May 2010' time '3:32:05 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-ToonVerwaest.210' message 'adding undefined classreference exception' id '5ea14a60-ac5a-4061-9a33-0c9fe44174e6' date '8 May 2010' time '4:04:56 am' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.209' message 'more small cleanups.' id '6614a584-b010-4d81-8264-9cce46eb54e2' date '8 May 2010' time '3:56:50 am' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.208' message 'always start at the rootpackage to ensure class references. actually return Slots from the MainInterpreter' id '4bc223ba-ed6a-47f7-92fa-b3cda5413d95' date '8 May 2010' time '3:03:25 am' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.207' message 'lots of refactorings to ensure it becomes easier in the end to make some sort of useful DSL for creating classes...' id '2c842789-fd57-4399-9fa6-35ed664e7fe3' date '8 May 2010' time '2:42:19 am' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.206' message 'fixing a bug in package exporting. decluttering the mess a little bit.' id '11065afa-e86f-4efa-917e-bc36b4bba23b' date '6 May 2010' time '8:36 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.205' message 'inheriting package names from pharo' id '6fe107d8-70d3-48c5-98e0-0ff2b06357ca' date '6 May 2010' time '4:38:53 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-DavidGurtner.204' message 'hierarchy tests' id 'd076798f-67c3-4f5d-8720-6639271245d4' date '6 May 2010' time '2:42:12 pm' author 'DavidGurtner' ancestors ((name 'Pinocchio-DavidGurtner.203' message 'added first bunch of hierarchy tests' id '5204df2a-3d6f-4cbe-b48e-6109110db571' date '5 May 2010' time '4:48:05 pm' author 'DavidGurtner' ancestors ((name 'Pinocchio-ToonVerwaest.202' message 'makes me to press enter. added first basic untested error handler' id '358696d0-adc5-4483-9325-863c4e9f1746' date '5 May 2010' time '4:33:33 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-CamilloBruni.201' message 'basic float parsing' id '17ba2073-0e5b-4beb-8035-3911dde19073' date '4 May 2010' time '5:25:28 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-CamilloBruni.200' message 'it committed some new test for classa name and stuff' id 'fd596755-eeac-4a49-8f8e-fbe92e74ba25' date '4 May 2010' time '4:07:47 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-CamilloBruni.199' message 'renaming InstVar to Slot' id 'd2aba5e5-4517-4eb3-acf3-08ec418e730c' date '4 May 2010' time '12:07:45 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-CamilloBruni.198' message 'changed InstVar to Slot' id '82b44c21-b219-408a-8a8e-02740b38c8b5' date '4 May 2010' time '12:06:47 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-CamilloBruni.197' message 'renaming instVar to Slot' id '85ee990f-18e8-41cd-b3f5-8f7e767710a2' date '4 May 2010' time '12:05:33 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-DavidGurtner.196' message 'making the debugger examples to be coherent with the implementation' id 'dde823a7-d509-4767-8611-db5a47c77ad4' date '28 April 2010' time '2:35:28 pm' author 'DavidGurtner' ancestors ((name 'Pinocchio-DavidGurtner.195' message 'rewrote parallel debugger to be the same as in the paper' id '0004d6e5-5f10-4659-9720-b381f8a639e5' date '26 April 2010' time '4:26:26 pm' author 'DavidGurtner' ancestors ((name 'Pinocchio-DavidGurtner.194' message 'simple message tally' id '26eca8fb-c17b-4673-b6ea-530a4c2dae29' date '21 April 2010' time '5:35:13 pm' author 'DavidGurtner' ancestors ((name 'Pinocchio-DavidGurtner.193' message 'hopefully finally fixing the return of a returning block in step over of PDebugger' id '3cc207a0-eed1-4922-b3b2-be78817b3ccb' date '12 April 2010' time '5:37:59 pm' author 'DavidGurtner' ancestors ((name 'Pinocchio-ToonVerwaest.192' message 'adding overwrite test.' id '1610bde0-23c7-40e0-9607-64e678362e75' date '6 April 2010' time '7:01:41 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.191' message 'renamed test' id '93aa129b-0b39-4419-a035-ecae92783ca8' date '6 April 2010' time '6:51:07 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.190' message 'adding field write test' id '89240c73-235a-44d7-b1e4-1d81abc694a3' date '6 April 2010' time '6:50:38 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.189' message 'adding NativeMethodContext for alias debugging.' id '84eb5507-b005-4a0a-8f15-92de528928c7' date '6 April 2010' time '6:38:06 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.188' message 'committing first version of AliasInterpreter. Also extending the inspector to support arrays better.' id '018d5292-4bdc-4d27-80ab-2a3da76f02ac' date '6 April 2010' time '6:20:27 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.187' message 'work on the alias debugger; thus refining the mceval to make it work easier' id 'dec50f1d-bc5f-442c-9758-1cbea06358a7' date '6 April 2010' time '12:22:08 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-CamilloBruni.186' message 'fixing indentation of exported source code' id 'c77c545c-40d6-4fe8-9be1-cf804a2b53a7' date '6 April 2010' time '12:24:37 am' author 'CamilloBruni' ancestors ((name 'Pinocchio-CamilloBruni.185' message 'added support for inst vars in the exported code overwrote #line in the exported source code such that the compiler warnings will point to the smalltalk source code location' id '800736e7-3c50-446b-b08d-e870e79e7c49' date '5 April 2010' time '11:53:29 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-CamilloBruni.184' message 'merging changes of PProcess renamed primitiveAnnotations added inplace C code export' id '7f59b140-0908-40da-9835-50cb2df6228e' date '5 April 2010' time '4:32:18 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-ToonVerwaest.183' message 'using lookupSelector:in: primitive from Interpreter plugin' id '499e1e14-a409-40b3-a477-0cde36749de7' date '3 April 2010' time '2:53:13 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-inurBollimaC.182' message 'basic implementation of pprocess' id '4f1ebdfa-05c3-4284-b819-02618a7f58b7' date '2 April 2010' time '5:43:59 pm' author 'inurBollimaC' ancestors ((name 'Pinocchio-DavidGurtner.181' message 'added PContinueTest' id '98e0fa37-d7f8-49c6-aa3f-9bc139008715' date '1 April 2010' time '5:52:30 pm' author 'DavidGurtner' ancestors ((name 'Pinocchio-ToonVerwaest.180' message 'forgot to export the printString method ...' id '465c3bcc-54e3-4790-a879-146b9735902f' date '1 April 2010' time '5:47:35 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.179' message 'more work on parallel debugger; better output now ' id 'd97ff92b-0da8-489c-9664-12619a5e72f2' date '1 April 2010' time '5:01:16 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.178' message 'fixed the paralleldebugger.' id '653b92c0-f755-4102-81bb-68c9e683798c' date '1 April 2010' time '4:01:06 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.177' message 'adding a continuation test.' id '1e329ddb-d4a0-4555-a99e-d56e743f81b7' date '1 April 2010' time '12:15:44 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.176' message 'removed pc from Context objects. contexts are now only environments. This should help for continuations.' id '76a0f5d5-c67f-4f97-80ec-b228afa8fb44' date '31 March 2010' time '5:23:41 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.175' message 'making the inspector more flexible' id '79355cfb-ad13-450d-ad29-b67782288241' date '31 March 2010' time '1:55:36 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-CamilloBruni.174' message 'working on pushing natives through the towers of interpreters' id '3538792a-94a7-474c-9409-eac03b501a80' date '30 March 2010' time '5:37:26 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-ToonVerwaest.173' message 'working on inline caches' id '861a8a79-6aa6-4433-a7a7-c102c1c38886' date '30 March 2010' time '5:00:55 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-CamilloBruni.172' message 'fixing some broken tests' id '63e7074e-61a7-4bfa-bd0e-66346b923cce' date '30 March 2010' time '3:50:23 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-ToonVerwaest.171' message 'more work on supporting towers of interpreters' id 'eeec66ec-80b8-4496-86bf-9a97722dba4e' date '30 March 2010' time '2:47:07 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-CamilloBruni.170' message 'Toon added code for A1 interpreter inverse message bubbling' id '67a987c4-88e7-4ad3-b8ef-8cf332895b54' date '29 March 2010' time '5:33:30 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-CamilloBruni.169' message 'added PLink' id '29b7736b-cecd-4af7-84c9-b212ef3bffaf' date '29 March 2010' time '5:08:48 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-ToonVerwaest.168' message 'bad guru! very bad gury! making me search long for the bug. so if you get random jumps with continue and then fail on totally random position; check if there''s no method like: bla bla ^ [ bla. ^ bla] Don''t return returning blocks! That doesn''t work! Now onto making perform:withArguments reflective' id '5846e0f5-f3f3-4e2b-9d49-dc0c8bf18bea' date '27 March 2010' time '12:03:06 am' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.167' message 'more work.... still not getting the continuation bug...' id '9bccee65-f2c2-45b4-bda2-bd4ebc18e670' date '26 March 2010' time '11:48:39 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.166' message 'fixed a bug! so annoying' id '3550606d-0805-4669-8312-86ac60bd8421' date '26 March 2010' time '10:45:57 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.165' message 'merged with guru''s code; started adding mceval support for reflective methods.' id 'b7e48a9c-af16-4bd0-89d0-7452de16b59a' date '26 March 2010' time '8:14:46 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.164' message 'lots of work on ReflectionMethods' id 'e1ccbacc-a5c9-445f-811e-eecd6615bb07' date '26 March 2010' time '7:38:45 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.163' message 'adding reflectionmethods' id '0a9d1999-c25e-4e5e-872e-b45b82bb7c29' date '26 March 2010' time '4:18:10 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.162' message 'more meta-interpreter work' id '05d57df1-cc95-46dd-a2e1-efd173be1d7f' date '25 March 2010' time '6:32:22 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.161' message 'move actual instvariable assignment to the instvar objects themselves' id '781f94d5-e64b-492e-ab55-58ff806d813f' date '25 March 2010' time '5:01:27 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.160' message 'propagating the changes to the mceval' id 'aa2f85c7-b833-4517-a9b0-935c8ba6442b' date '25 March 2010' time '4:55:36 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.159' message 'Work on mceval + debugger + setting host of methodclosures correctly' id 'd2bdbfc6-f449-4266-b5b8-916499a4439c' date '25 March 2010' time '4:31:32 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.158' message 'adding debugger support for stepping + over' id 'bac88efc-3f4e-4c24-af97-8e2c63432762' date '25 March 2010' time '11:27:53 am' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.157' message 'more work on the stepping debugger' id 'dec1b41e-d2d6-4d74-9b44-9b8d83b155a7' date '25 March 2010' time '1:03:33 am' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.156' message 'more work on the debugger. don''t overwrite Send but rather send:...:' id 'b8f03fba-17dd-485c-afa0-87d31399055f' date '25 March 2010' time '12:56:26 am' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.155' message 'fixed the debug-interpreter' id 'a9158fb9-7be8-4552-8f49-a1cd6fb7a778' date '24 March 2010' time '11:23:14 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-CamilloBruni.154' message 'adding debugger' id '3abfda6a-431b-4214-838e-f0692a26ed88' date '24 March 2010' time '7:01:12 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-CamilloBruni.153' message 'moving interpreter into separate subpackage making sure testcases inherit testmethods in the exported c code' id '369fceff-f688-421b-a8e8-c50a0f42d37a' date '24 March 2010' time '5:23:39 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-DavidGurtner.152' message 'adding tests for meta circular Interpreter' id '43ad2bc4-e6b6-4f14-8652-5062cca1e7f1' date '24 March 2010' time '5:21:03 pm' author 'DavidGurtner' ancestors ((name 'Pinocchio-ToonVerwaest.151' message 'fixed continuation mceval code. easier than I thought :)' id '439f01f5-7e2f-472a-a4b2-49dbabe6ec34' date '24 March 2010' time '1:33:52 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.150' message 'working on mceval Continue support' id '25ab6403-87a3-4f76-8fcb-b5654f17a8c2' date '24 March 2010' time '1:17:28 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-DavidGurtner.149' message 'fixed MCeval super and send code; made testSuper work.' id '5a638f46-fcba-4c27-b7ad-2cabaae78c78' date '23 March 2010' time '7:07:47 pm' author 'DavidGurtner' ancestors ((name 'Pinocchio-DavidGurtner.148' message 'renamed initialize on PInterpreter to pinitialize, because of monticello. Some work on PInterpreter, needs tests!' id '4fb2ac5e-1195-4eac-b174-e9e23ceb3b09' date '23 March 2010' time '6:35:46 pm' author 'DavidGurtner' ancestors ((name 'Pinocchio-DavidGurtner.147' message 'renamed initialize to pinitialize because of monticello. some work on Pinterpreter, needs tests!' id 'eaf83e15-ffc3-460a-8c9e-73099fc49bd4' date '23 March 2010' time '6:33:47 pm' author 'DavidGurtner' ancestors ((name 'Pinocchio-ToonVerwaest.146' message 'fixed loading of plugins. now you have to specify the identifier in the smalltalk code rather than getting it from the plugin itself. init_plugin before doing call_initialize on the exported classes; but after making the classes (since we have to store _NATIVES_ into the PluginPluginClass' id 'e9a772ab-133e-426b-b8da-77dc8a9ed309' date '23 March 2010' time '6:17:05 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-CamilloBruni.145' message 'added plugin' id '8d300bbf-7e4d-42b9-8c33-2669c771d101' date '23 March 2010' time '4:56:48 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-ToonVerwaest.144' message 'added tests (and fixed) PAssign for PVariable' id 'f468702c-901c-4314-822a-8f33dc2485ec' date '23 March 2010' time '12:42:06 am' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.143' message 'test variables in blockcontexts + methodcontexts' id 'f26bd2f3-1cd5-47b6-a3fe-9897e9489b5a' date '23 March 2010' time '12:28:41 am' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.142' message 'PVariable tested with just method-context' id 'eac98567-da3a-41fd-9725-fc90e03c8166' date '23 March 2010' time '12:17:38 am' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.141' message 'fixed the code so that the closure evaluation works' id '6014f572-f1e0-481e-b27c-63c80d63e264' date '22 March 2010' time '11:43:52 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-CamilloBruni.140' message 'renaming and cleanup of test methods names' id 'cc6c0201-f1a4-4c26-aee0-56a4d12772d1' date '22 March 2010' time '3:15:08 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-CamilloBruni.139' message 'made dict/set objects inherit from each other fixed tests to be working' id 'b6f99e3f-25c2-4fbe-a6bc-0f68c267c324' date '22 March 2010' time '3:13:33 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-ToonVerwaest.138' message 'work on mc-blockclosures' id '7003798b-d2ce-496d-b1c6-67effd4fcafc' date '21 March 2010' time '11:30:32 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.137' message 'adding interpreter tests. testConstant and testSend seem to work (very basic tests; but at least already uses the invokeNative:on:class:message: native.' id '68c943f3-40d3-4f90-8a43-819d0a318a77' date '21 March 2010' time '9:14:46 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.136' message 'work on mceval; removed Callec in favor of Continue (should maybe rename later again; but was class/instance side split into 2 classes; that doesn''t make sense).' id '73e93bfb-489b-4b8d-9f6c-6f48e07d3499' date '18 March 2010' time '2:28:23 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.135' message 'fixed addition bug on PDictionary; only increase size when the element wasn''t present yet.' id 'fe302f52-306a-46ce-b6ed-b90cda0f14de' date '18 March 2010' time '10:46:19 am' author 'ToonVerwaest' ancestors ((name 'Pinocchio-inurBollimaC.134' message 'added proper command for Pinocchio and PEG restricted Browser to the main MENU' id 'f5203823-8411-4bab-962a-951f25917552' date '17 March 2010' time '8:06:36 pm' author 'inurBollimaC' ancestors ((name 'Pinocchio-CamilloBruni.133' message 'comitting again maybe I missed something' id '15b12e92-aacd-49f8-8639-dc0cd64bf7ed' date '17 March 2010' time '6:34:09 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-CamilloBruni.132' message 'adding untested PIdentitySet and PIdentityDict' id '7e1cf4ce-af03-4129-8db5-79cf6b0658af' date '17 March 2010' time '6:23:24 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-CamilloBruni.131' message 'fixing tests. all tests run now in pinocchio' id '33d88f74-1091-4ea1-9222-a993fb110847' date '17 March 2010' time '6:12:05 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-CamilloBruni.130' message 'replaced all Dictionary with PDictionary and Set with PSet' id 'fe3e8afe-9266-4381-92d5-84429a6b39e5' date '17 March 2010' time '4:38:20 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-CamilloBruni.129' message 'savin!' id '421dc1eb-a22a-4f02-99c1-83d8e9e6e946' date '17 March 2010' time '2:53:17 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-CamilloBruni.128' message 'asdfasdf' id '806eab01-f93f-4f5e-9f17-db679e214a5e' date '17 March 2010' time '2:49:35 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-CamilloBruni.127' message 'empty log message' id 'f3930476-4974-4df8-a9bf-39734f294d08' date '17 March 2010' time '2:48:40 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-CamilloBruni.126' message 'empty log message' id '788d588e-895f-4218-aec9-1dfa146c9db3' date '17 March 2010' time '2:48:17 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-CamilloBruni.125' message 'empty log message' id '5a964b23-527d-4d46-911f-3687215ef03c' date '17 March 2010' time '2:46:47 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-CamilloBruni.124' message 'empty log message' id '91378f8c-5153-470f-a8d7-083a27939824' date '17 March 2010' time '2:45:23 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-CamilloBruni.123' message 'coomit bastard!' id '9fe8ccd1-261f-4d7b-b133-c5bf1cc6745d' date '17 March 2010' time '2:45:01 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-CamilloBruni.122' message 'added new: to PSet' id '3dc86d81-dd46-4cee-bd2b-945edf3b5e9b' date '17 March 2010' time '2:44:14 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-CamilloBruni.121' message 'adding new: to PSet' id '5d85f959-faa7-4dcc-adda-f932a0acbc12' date '17 March 2010' time '2:43:28 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-ToonVerwaest.120' message 'another try at removing crap' id '07858371-ca7b-42fc-8c49-b0fb3b3cd4f7' date '16 March 2010' time '8:40:53 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-CamilloBruni.119' message 'comitting again' id '3f94b64f-0cfd-485e-9d8a-11948e8ac056' date '16 March 2010' time '4:55:08 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-inurBollimaC.118' message 'fixing some Set and Dict stuff' id 'eba63349-f631-4ef0-9913-23c6de0d173d' date '16 March 2010' time '3:10:31 pm' author 'inurBollimaC' ancestors ((name 'Pinocchio-inurBollimaC.117' message 'adding basic new native for Set' id 'e6f1fe4b-4626-43d2-b96c-61e505f9762e' date '15 March 2010' time '3:47:24 pm' author 'inurBollimaC' ancestors ((name 'Pinocchio-inurBollimaC.116' message 'added missing pequals on String' id 'cabb10bb-9d75-475d-b061-96c2444c3049' date '15 March 2010' time '2:40:05 pm' author 'inurBollimaC' ancestors ((name 'Pinocchio-inurBollimaC.115' message 'added error printout for failing assertions with should' id '51602d70-f5df-45cf-99e0-3785b19d0476' date '15 March 2010' time '2:26:02 pm' author 'inurBollimaC' ancestors ((name 'Pinocchio-ToonVerwaest.114' message 'small changes; inlining makes it slightly faster' id 'fe33ab15-039d-4f5c-9fd4-fe9320083062' date '15 March 2010' time '2:09:52 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.113' message 'don''t throw away buckets' id '0c01801a-ca23-4fd3-a5f9-fa1827bbe159' date '15 March 2010' time '1:42:35 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-inurBollimaC.112' message 'avialble method sources are added to C code' id '98ce2284-1ff8-4410-a7c0-d8d2c50b0a3e' date '15 March 2010' time '1:28:26 pm' author 'inurBollimaC' ancestors ((name 'Pinocchio-ToonVerwaest.111' message 'bit nicer version; now ratio is always stored as smallint.' id 'c5c84d68-2626-4080-b747-6c9975954e32' date '15 March 2010' time '12:02:31 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.110' message '// is waaaaaaaaaaaaaaaaaaaaaaaay faster than /. more or less doubles the speed of addition :)' id '8311c2e4-de49-4bc8-8a49-1fe6ae5be49f' date '15 March 2010' time '12:00:43 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.109' message 'removing crap?' id 'dbc9d904-7453-494d-bb24-154165336efb' date '15 March 2010' time '11:54:59 am' author 'ToonVerwaest' ancestors ((name 'Pinocchio-inurBollimaC.108' message 'making includesKey much faster on PDict. Still we lack when growing the dict' id '423315a6-f899-438c-a0ae-dec1ddc10980' date '14 March 2010' time '8:35:40 am' author 'inurBollimaC' ancestors ((name 'Pinocchio-inurBollimaC.107' message 'merged with toon' id '89386fc1-d77f-4427-a1c4-4c534855a480' date '13 March 2010' time '11:13:51 pm' author 'inurBollimaC' ancestors ((name 'Pinocchio-inurBollimaC.106' message 'adding nice dict tests' id '80a2f181-4324-493b-95d3-2bd262809b0c' date '13 March 2010' time '11:13:05 pm' author 'inurBollimaC' ancestors ((name 'Pinocchio-ToonVerwaest.105' message 'cleaning up the dictionary implementation. reading is now more or less as fast as normal dictionaries for many elements (didn''t check small dictionaries yet; there we should be faster). adding is still a bit slow though... should check grow-function.' id 'e24ecf6f-130f-4efb-9379-79cc7cf575a4' date '13 March 2010' time '6:22:26 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.104' message 'moved all natives to named primitives' id '811d7591-eecd-42de-a093-8f0e8487e8fa' date '12 March 2010' time '5:19:26 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.103' message 'intermediate commit; starting to move all methods to the new named primitives; and thus providing the API within pharo' id '47d6e6d8-9339-4cfe-980b-d44bb931b16f' date '12 March 2010' time '4:06:42 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-DavidGurtner.102' message 'fixed annotations to be arrayed as in C. for named primitives.' id '28f5105b-564b-4655-a498-2de5d55eb53a' date '11 March 2010' time '7:06:42 pm' author 'DavidGurtner' ancestors ((name 'Pinocchio-DavidGurtner.101' message 'exporting annotations now' id 'c1239e86-cbcb-4521-8485-6a7421845e72' date '11 March 2010' time '4:22:49 pm' author 'DavidGurtner' ancestors ((name 'Pinocchio-ToonVerwaest.100' message 'exporting setbucket and dictbucket as internal classes' id 'faf135cb-12f9-46a4-b7d5-8d0a5fd0e6c5' date '11 March 2010' time '2:31:59 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-inurBollimaC.99' message 'moving Dict and Set into separate Collection' id '67cb9d97-e3cf-4962-ae15-08c2b7462e12' date '10 March 2010' time '6:40:40 pm' author 'inurBollimaC' ancestors ((name 'Pinocchio-DavidGurtner.98' message 'Changed Compiler to understand NativeMethods...' id '87acc936-1214-4589-9ac1-6e717412d22c' date '10 March 2010' time '6:22:17 pm' author 'DavidGurtner' ancestors ((name 'Pinocchio-inurBollimaC.97' message 'happy comit to me blu' id 'fd65de0b-1a09-40e7-b0e6-ff1ad95cb0ba' date '10 March 2010' time '6:10:47 pm' author 'inurBollimaC' ancestors ((name 'Pinocchio-inurBollimaC.96' message 'he adds more code hop id dosnt brake' id 'f2462ac9-ed13-4c42-b12d-bd0bfa89e7eb' date '10 March 2010' time '6:08:08 pm' author 'inurBollimaC' ancestors ((name 'Pinocchio-ToonVerwaest.95' message 'momentarily preventing some overwriting of native code... ' id 'b14dcb25-4aef-46d6-8da7-1817a3d9f571' date '10 March 2010' time '3:18:59 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.94' message 'merging commit' id '9c37d09d-aaf0-472b-b453-679da8d7fe7e' date '10 March 2010' time '3:09:29 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.93' message 'removing dependency' id '2465fbdc-3073-4988-9810-b832b5fef5ca' date '10 March 2010' time '3:06:07 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-inurBollimaC.92' message 'adding tons of set and dict tests finished dict and set implementation using PSetBucket and PDictBucket. Sets and Dicts work linearily up to a certain given limit' id '4a3cd57f-71a1-431f-8dbd-167e19ff6dc0' date '9 March 2010' time '11:09:15 pm' author 'inurBollimaC' ancestors ((name 'Pinocchio-inurBollimaC.91' message 'merging' id '8f73d68d-30c8-4985-a57f-2b628b853146' date '9 March 2010' time '2:26:38 pm' author 'inurBollimaC' ancestors ((name 'Pinocchio-inurBollimaC.90' message 'maybe forgot committing the collection changes' id '7f6689a2-4ff4-45e9-986c-a2b3f37b962e' date '9 March 2010' time '2:25:44 pm' author 'inurBollimaC' ancestors ((name 'Pinocchio-inurBollimaC.89' message '.won eman wen a evah I' id '802693dc-f8d2-44d0-a353-d02092f65906' date '9 March 2010' time '2:22:28 pm' author 'inurBollimaC' ancestors ((name 'Pinocchio-CamilloBrun.88' message 'reimplemtented the dictionary in smalltalk for testing purposes' id '6145e1ad-deec-41e4-ba2d-9bd895913d31' date '9 March 2010' time '9:14:04 am' author 'CamilloBrun' ancestors ((name 'Pinocchio-CamilloBrun.87' message 'added Dictionary tests and a few more methods' id '23393e04-c116-4c58-b6ea-b8faa4150a66' date '8 March 2010' time '4:23:03 pm' author 'CamilloBrun' ancestors ((name 'Pinocchio-David_Gurtner.86' message 'putting a methodname into a file to be loaded no longer requires a methodname.' id '6fe28e19-9f73-473e-b878-57a21149c810' date '8 March 2010' time '2:04:45 am' author 'David Gurtner' ancestors ((name 'Pinocchio-DavidGurtner.85' message 'very! basic read eval loop...' id 'eb1e42b2-6833-4ae4-980b-3d94608cfdf2' date '4 March 2010' time '5:55:09 pm' author 'DavidGurtner' ancestors ((name 'Pinocchio-ToonVerwaest.84' message 'adding do: to non-sized layout objects' id '6776273e-254c-4144-8176-55b9fb5e832d' date '4 March 2010' time '4:21:06 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-DavidGurtner.83' message 'added PInterpreter' id '599e323c-712f-4204-b153-24a3d327e752' date '4 March 2010' time '3:09:38 pm' author 'VincentVanGogh' ancestors ((name 'Pinocchio-CamilloBruntToonVerwaesi.82' message 'made it work by feeding. added shortcuts for stderr' id '71324f6e-a759-487e-b754-65457623136f' date '3 March 2010' time '2:41:34 pm' author 'CamilloBrun' ancestors ((name 'Pinocchio-CamilloBruni-ToonVerwaest.81' message 'fixing path creation in SCParser refactor methods' id '48d144cd-2742-4833-a8a8-d442090d6a8b' date '3 March 2010' time '11:50:43 am' author 'CamilloBrun' ancestors ((name 'Pinocchio-CamilloBrun.80' message 'added smalltalk theme changes added another package test' id '63d995da-1ca1-4c90-a596-bf39eec6f0e6' date '3 March 2010' time '9:57:07 am' author 'CamilloBrun' ancestors ((name 'Pinocchio-ToonVerwaest.79' message 'don''t use cr but lf.' id '0c2fe7ff-c814-4a91-ba3d-0fedbb0efa5b' date '2 March 2010' time '2:22:39 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-CamilloBrun.78' message 'creating code.p file on beforehand' id '9a845d40-8bc9-4d27-b644-3cebccec97e5' date '2 March 2010' time '11:52:37 am' author 'CamilloBrun' ancestors ((name 'Pinocchio-ToonVerwaest.77' message 'use ensurePackageNamed: to build package structure! otherwise backlinks aren''t established. probably some other minor stuff too..' id 'dd3ddd3a-7c4b-4bc2-92c8-a568cc818267' date '1 March 2010' time '10:18:57 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.76' message 'started exporting layouts' id '9e401e42-7f7c-4f3e-af0e-690f31120810' date '1 March 2010' time '8:11:24 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.75' message 'trying to make the behavior of the compiler sane for block/method variable identifiers.' id '1ed4607a-3a44-412b-bb32-ee86f2c817db' date '1 March 2010' time '6:35:29 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.74' message 'another layout mismatch fixed. now problems with uns_int vs smallint ...' id '8470b8cf-60c6-49ba-a4a2-41f54224e94f' date '1 March 2010' time '6:15:14 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.73' message 'more work on the compiler; matching format ph<->C' id '7eade086-e167-4229-b232-91672e4b1cd3' date '1 March 2010' time '6:10:26 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.62' message 'remove class' id '0fdbc6e4-25af-418b-9a1d-1adf0e4a9da6' date '23 February 2010' time '11:49:54 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-CamilloBrun.61' message 'added nice chime after exporting' id 'd14e54a3-8151-40dc-bbe3-110527c25c71' date '23 February 2010' time '11:47:10 pm' author 'CamilloBrun' ancestors ((name 'Pinocchio-ToonVerwaest.60' message 'use a World-stub for PCompilerTest. all compiler tests succeed now. onto creating a decent world' id '4cbc9dbf-5409-4ee5-ad12-0fe5b6c92c98' date '23 February 2010' time '10:22:18 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.59' message 'only export classes which haven''t been removed... just ignore those for now.' id '4e44bd95-2cf1-4e78-81e8-d70b157d18ec' date '23 February 2010' time '8:55:48 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-CamilloBrun.58' message 'made gofer changes' id '3153960d-2013-4164-960b-d5774dae59ac' date '23 February 2010' time '6:53:58 pm' author 'CamilloBrun' ancestors ((name 'Pinocchio-CamilloBrun.57' message 'asdf' id '90b3114b-e5d4-4ca2-bf1d-41e2bac03bec' date '23 February 2010' time '6:50:51 pm' author 'CamilloBrun' ancestors ((name 'Pinocchio-CamilloBrun.56' message 'added world menu to export the pinocchio code' id 'f639d9e4-6b2f-4989-8e48-8fc418eb60af' date '23 February 2010' time '6:17:47 pm' author 'CamilloBrun' ancestors ((name 'Pinocchio-CamilloBrun.55' message 't&c exporting single classes by having decent instvar names (hacked in...O)' id '7af1c720-21d6-49fa-8ed9-b817d1134b42' date '23 February 2010' time '6:01:53 pm' author 'CamilloBrun' ancestors ((name 'Pinocchio-CamilloBrun.54' message 'rpelacing all cr''s with lf''s for better readable files' id '7430e710-8a9d-4e11-bc73-9f07f66a0e82' date '23 February 2010' time '4:41:33 pm' author 'CamilloBrun' ancestors ((name 'Pinocchio-CamilloBrun.53' message 'making tests work (not fully)' id 'd10251af-1d0d-427b-8d0a-61be6f116e4e' date '23 February 2010' time '3:38:20 pm' author 'CamilloBrun' ancestors ((name 'Pinocchio-ToonVerwaest.52' message 'adding at:ifPresent:' id 'e2b6381a-91a9-46d0-8035-6bbfc9a3d597' date '23 February 2010' time '12:02:58 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.51' message 'export superclass for all non-core classes (which are Object, Behavior, Class and Metaclass)' id '78f59527-56a2-4989-a905-3ee9be692df9' date '23 February 2010' time '11:45:50 am' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.50' message 'don''t dump layout of internal classes...' id '37e8d793-98ed-4ba8-a2e1-417665217eac' date '22 February 2010' time '10:33:32 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.49' message 'starting to wonder how this ever worked :) still need to remove overhead of layout dumping when not necessary (although we''ll probably need it in the end anyway...)' id '9bec2b1a-fcda-4c8c-8b2f-b32e7f717548' date '22 February 2010' time '10:16:05 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.48' message 'seems like it was completely broken. Tried to unify the way we do things a bit. apparently test/ doesn''t get purged like lib...' id '9a980e4c-a14e-45e9-ac33-151de6321ceb' date '22 February 2010' time '9:46:25 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-CamilloBrun.47' message 'comitting empty changes' id 'b6e270b3-f292-41de-8702-d0426289f5c2' date '22 February 2010' time '5:28:44 pm' author 'CamilloBrun' ancestors ((name 'Pinocchio-CamilloBrun.46' message 'extracting PSelf' id 'e41c9e46-61cd-4879-95bf-bdbba26c02b0' date '22 February 2010' time '5:15:14 pm' author 'CamilloBrun' ancestors ((name 'Pinocchio-CamilloBruni.45' message 'added magic test which is failing' id '1e722e54-efc9-445e-93b7-ed4a33de09fd' date '22 February 2010' time '5:08:04 pm' author 'CamilloBrun' ancestors ((name 'Pinocchio-CamilloBrun.44' message 'ignoring PCDumper tests for now' id 'c4d4ab9b-45f0-486f-97cc-7a97e39e1743' date '22 February 2010' time '1:45:55 pm' author 'CamilloBrun' ancestors ((name 'Pinocchio-CamilloBrun.43' message 'fixing one test. Ignoring PCDumperTest for now' id 'a140a5e7-7101-4395-865e-881bb6f075bf' date '22 February 2010' time '1:45:21 pm' author 'CamilloBrun' ancestors ((name 'Pinocchio-ToonVerwaest.42' message 'removing unnecessary methods' id 'e6c87a5c-cb03-4b22-81eb-84dd5d4692f2' date '22 February 2010' time '1:12:09 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.41' message 'fixed compiler test' id '5d300d0a-d4c9-4060-9ec6-d77e94b9da48' date '22 February 2010' time '1:08:39 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.40' message 'removed selector; generated code still works. now have to adapt tests' id '728bd986-eaf1-433a-a1d7-4faa0a5adbcc' date '22 February 2010' time '12:07:19 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.39' message 'starting to remove selector from Method by generating a methodclosure in the compiler' id 'bc01e4cf-8faa-49f5-9164-627e890a6d5d' date '22 February 2010' time '12:06:08 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.38' message 'removed depth from block and directly save it in all the instvars' id '78b8b9f3-3ccd-48a6-9a8f-26cbf7ca1823' date '22 February 2010' time '11:45:12 am' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.37' message 'minor PAST cleanup' id 'c7491756-2f72-42b4-8b5b-003267c10218' date '19 February 2010' time '4:28:25 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.36' message 'removed hasReturn from P-AST' id '2c89401c-013a-468b-b702-79010baaafee' date '19 February 2010' time '4:21:33 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.35' message 'removing type-related code. might want to reintroduce later but rather cleanup now...' id 'fb9da168-3aaf-4243-b3ec-224feb48c5ad' date '19 February 2010' time '3:45:15 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.34' message 'cleaning up the ST-AST mess.' id '9e7847b7-b67c-4874-99b3-3a5ccffbc0d3' date '19 February 2010' time '3:41:37 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.33' message 'more cleanup' id '47e2657d-0c87-42ee-b42a-f7d2b5b11988' date '19 February 2010' time '3:10:12 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.32' message 'fixed all the compiler tests by throwing out idiotic type-checks' id '6b79eb03-36fe-4f05-9cf5-47b3b291a0a1' date '19 February 2010' time '2:36:42 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.31' message 'small cleanups all over' id '76766d47-e182-4aae-9714-253c43b41a66' date '19 February 2010' time '1:50:25 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.30' message 'removed more unnecessary typeconversions in PPackage' id '85fa41bf-1a8e-4aae-acf7-337f25edb6fd' date '19 February 2010' time '1:16:22 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.29' message 'cleaned up the conversion mess in PRootPackage / PPackage. ' id '824a5d85-d8bd-42e0-b8f0-eb428fa752dc' date '19 February 2010' time '1:12:52 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.28' message 'fixed PConstants. Now the compiler is asPObjectfree.' id '587ee34a-c0f1-4c7d-a55a-5a4d5b90a8b1' date '19 February 2010' time '1:03:15 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.27' message 'fixed all asPObject on asSymbols. Now onto the constants' id 'd0aa04a7-1dfe-44ed-b43c-57271b8001e2' date '19 February 2010' time '12:58:34 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.26' message 'removed all asArray asPObject from PCompiler; now just asArray. The bridgetest will have to ensure (if it cares) that it''s a PObject. now on to symbols.' id 'f0955813-de03-471c-b026-d0dd090de865' date '19 February 2010' time '12:44:13 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.25' message 'removed remaining asP* in favor of asPObject' id '635de97e-12cf-49a6-aa98-d5305167010d' date '18 February 2010' time '9:44:55 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.24' message 'removed all references to asPSymbol and fixed a bug I introduced before' id '0135bb8f-6e83-4e88-bf21-f081755ed981' date '18 February 2010' time '9:35:03 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.23' message 'applied some fixes in the testexporter needed to match the updated compiler' id 'e01037ad-305b-48b5-bd08-f6e9cf4b602d' date '18 February 2010' time '5:03:17 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.22' message 'cleaned up keywords-related code' id '189e6467-c7fc-498e-b0f4-8c2de52466af' date '18 February 2010' time '4:08:06 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.21' message 'more work on fixing the whole mess that''s supposed to compile stuff' id '36066c81-9514-4a77-8dc9-628b29f33309' date '18 February 2010' time '3:58:05 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.20' message 'started removing all asP and replacing with asPObject' id '8fac93b4-a0ca-4198-8dba-8828015baa95' date '18 February 2010' time '2:42:50 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.19' message 'minor changes' id 'c123bc78-ce5e-410b-a627-057c8118a81b' date '18 February 2010' time '2:18:40 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.18' message 'renamed PASTVisitor to PCompiler' id '7d0637f9-7665-4e89-bf3a-b7a1554bb72f' date '18 February 2010' time '12:07:57 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.17' message 'minor changes' id 'dade3c19-b931-487f-a255-55b5ef8c1064' date '18 February 2010' time '12:07:07 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.16' message 'working on cleaning up the mapping of variables/instance variables' id '7518dd3c-2e69-435c-bf9c-173011632cf5' date '18 February 2010' time '11:35:27 am' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.15' message 'trying to fix pClassName and pinocchioName mess... still work to be done...' id '1409a458-b92a-4181-bf80-1cdbcf342272' date '17 February 2010' time '5:41:46 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.14' message 'improved lots of stuff! soooo much I don''t even remember what I actually did...' id 'b36b7015-78f2-4832-9427-440df66845f1' date '17 February 2010' time '5:21:06 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.13' message 'more cleanup changes. flagged lookupNamed: to check if it''s actually used. true asPObject anyone?' id 'ce77fc8b-dca9-459d-84a8-83d8fe876ea9' date '17 February 2010' time '4:32:24 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.12' message 'merge commit' id 'b3ca5e35-b797-4276-8b62-7d51519854c9' date '17 February 2010' time '3:58:19 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.11' message 'fixing my side of the bug' id '6b699ff5-577b-4c9e-977b-a397af7a66a7' date '17 February 2010' time '3:57:47 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.8' message 'made code look like C, enough to support numArgs directly' id '94088035-7ea2-4ec9-ab27-b1cebe4d82d6' date '17 February 2010' time '3:13:05 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.7' message 'small changes to catch removed code from the C side' id '4f1fff97-a0ef-44cd-a4bf-1ef6d96e4c5c' date '17 February 2010' time '2:38:40 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.6' message 'another try at committing my code. added a test for PDictionary.' id '469e7f7b-5fa5-457b-8036-c047a0aeb0d6' date '17 February 2010' time '11:48:56 am' author 'ToonVerwaest' ancestors ((name 'Pinocchio-CamilloBruni.5' message 'ad' id '721f211c-c0de-4e2e-8ea8-648ef7df8299' date '16 February 2010' time '4:37:10 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-CamilloBruni.4' message 'asdf' id 'abdb5096-7403-4483-b2a4-bc3b866ab54c' date '16 February 2010' time '4:34:56 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-CamilloBruni.3' message 'a' id '42b1e626-4503-4958-afcc-42b1bcfc6d65' date '16 February 2010' time '4:34:41 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-ToonVerwaest.2' message 'basic cleanup' id 'de57b405-12c0-47fe-adfb-84e95a1870e5' date '16 February 2010' time '4:26:01 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-ToonVerwaest.1' message 'Moving to Pinocchio from SpyCam' id '600a7643-062a-49a6-b220-4f08a530dd2d' date '16 February 2010' time '2:42:06 pm' author 'CamilloBruni' ancestors () stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())(name 'Pinocchio-VincentVanGogh.10' message 'started to write code. damn brushes' id '78bc9983-e3c3-46bd-a70c-2154573e821c' date '17 February 2010' time '3:30:14 pm' author 'VincentVanGogh' ancestors ((name 'Pinocchio-VincentVanGogh.9' message 'painting landscapes' id 'e7294ce0-e295-49ef-8a42-7bf96defcf14' date '17 February 2010' time '3:27:45 pm' author 'VincentVanGogh' ancestors ((name 'Pinocchio-VincentVanGogh.8' message 'painting landscapes. ' id '276d526a-ea61-47f1-90f3-da174f4e41c6' date '17 February 2010' time '3:26:45 pm' author 'VincentVanGogh' ancestors ((id '4f1fff97-a0ef-44cd-a4bf-1ef6d96e4c5c')) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())(name 'Pinocchio-VincentVanGogh.11' message 'he does like short classes. P export. for exporting the system' id 'b2a5abef-9614-472e-a624-6af4eb9c14ea' date '17 February 2010' time '3:55:20 pm' author 'VincentVanGogh' ancestors ((id '78bc9983-e3c3-46bd-a70c-2154573e821c')) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())(name 'Pinocchio-CamilloBrun.72' message 'adding compilation' id 'c2c49dd6-3238-4686-acc1-08c696d39e7a' date '1 March 2010' time '4:41:04 pm' author 'CamilloBrun' ancestors ((name 'Pinocchio-CamilloBrun.71' message 'adding more file tests' id '57950cdc-7a94-4e8c-ae3e-083dd040f40a' date '1 March 2010' time '1:17:05 pm' author 'CamilloBrun' ancestors ((name 'Pinocchio-CamilloBrun.70' message 'removed some Object casts in the CDumper' id '052ca0ed-0d26-4072-bbc5-e3e47cc15ddf' date '1 March 2010' time '11:30:11 am' author 'CamilloBrun' ancestors ((name 'Pinocchio-VincentVanGogh.69' message 'aborted art' id 'cbad578d-ab2b-4e95-ab4a-8c7c4a5afaa3' date '25 February 2010' time '5:58:21 pm' author 'VincentVanGogh' ancestors ((name 'Pinocchio-VincentVanGogh.68' message 'painted valleys and green fields, and then i put some paths between...' id '207e57ab-8c7f-4402-ad72-fc7e37133576' date '25 February 2010' time '5:19:11 pm' author 'VincentVanGogh' ancestors ((name 'Pinocchio-VincentVanGogh.67' message 'creating art by rearanging things' id 'a6bba13f-758b-40b8-a356-4a3cfa229c12' date '25 February 2010' time '2:31:42 pm' author 'VincentVanGogh' ancestors ((name 'Pinocchio-VincentVanGogh.66' message 'painted asPObject with white color till nobody sees it anymore' id 'afb291b4-20ff-4ca4-96f9-9d10f13c4ae8' date '25 February 2010' time '2:05:56 pm' author 'VincentVanGogh' ancestors ((name 'Pinocchio-David_Gurtner.65' message 'added packages.... needs reviewing ;)' id 'c8942619-d5af-4f66-9a39-240b639a0f3c' date '25 February 2010' time '12:27:35 am' author 'David Gurtner' ancestors ((name 'Pinocchio-VincentVanGogh.64' message 'the sun went down, i cannot continue to paint.' id 'e3d500bc-a6f7-4047-93cb-ec96c6199d63' date '24 February 2010' time '6:14:58 pm' author 'VincentVanGogh' ancestors ((name 'Pinocchio-CamilloBrun.63' message 'more tests' id '9b5ea792-477b-4029-8afc-cb69dc6944fc' date '24 February 2010' time '9:19:14 am' author 'CamilloBrun' ancestors ((name 'Pinocchio-CamilloBrun.62' message 'porting more tests directly to smalltalk' id 'a9939aec-142b-475c-a09e-d237302abaca' date '24 February 2010' time '9:06:37 am' author 'CamilloBrun' ancestors ((id 'd14e54a3-8151-40dc-bbe3-110527c25c71')) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())(name 'Pinocchio-DavidGurtner.90' message 'adding Collections-Unordered' id '53f1f335-eb62-47f6-a8c7-ea9127d7635d' date '9 March 2010' time '2:24:51 pm' author 'DavidGurtner' ancestors ((id '802693dc-f8d2-44d0-a353-d02092f65906')) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())(name 'Pinocchio-inurBollimaC.93' message 'fixing wrong inhertence of PSet' id 'b8e720f7-4678-4ca3-b165-cd9e8f1d61b1' date '10 March 2010' time '2:59:13 pm' author 'inurBollimaC' ancestors ((id '4a3cd57f-71a1-431f-8dbd-167e19ff6dc0')) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())(name 'Pinocchio-ToonVerwaest.96' message 'nicer errors.... colors!' id '9c2df550-2142-471a-9d0e-101a558115d7' date '10 March 2010' time '5:53:57 pm' author 'ToonVerwaest' ancestors ((id 'b14dcb25-4aef-46d6-8da7-1817a3d9f571')) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())(name 'Pinocchio-ToonVerwaest.106' message 'more runs; higher ratio!' id 'cd8988d0-ad98-41cc-8d8e-42613e2c3922' date '13 March 2010' time '11:13:13 pm' author 'ToonVerwaest' ancestors ((id 'e24ecf6f-130f-4efb-9379-79cc7cf575a4')) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())(name 'Pinocchio-DavidGurtner.164' message 'refactored the debugger to have a general purpose stepping interpreter, to use for example with the parallel debugger. did some work on that to, but because of issues with stacking interpreters i''ll postpone this for some other day' id '6b63764e-2ca7-4a1d-b5fc-fea713e8de96' date '26 March 2010' time '2:40:36 am' author 'DavidGurtner' ancestors ((name 'Pinocchio-DavidGurtner.163' message 'refactored the debugger to have a general purpose stepping interpreter, to use for example with the parallel debugger. did some work on that to, but because of issues with stacking interpreters i''ll postpone this for some other day' id '3047633a-93ec-4ddb-b8f8-5982bd286dca' date '26 March 2010' time '2:39:16 am' author 'DavidGurtner' ancestors ((id '05d57df1-cc95-46dd-a2e1-efd173be1d7f')) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())(name 'Pinocchio-ToonVerwaest.237' message 'context' id '05b0273a-be71-43d5-b65e-36c59fc609d4' date '20 May 2010' time '1:40:52 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.236' message 'making context external' id '49caccac-5981-403d-a6ea-93980486b72d' date '20 May 2010' time '1:31:29 pm' author 'ToonVerwaest' ancestors ((id '447d3c7f-864b-41db-b384-66fbaf41275e')) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())(name 'Pinocchio-ToonVerwaest.280' message 'returning from blocks at the end and generating their threaded versions too' id 'f020f7c5-86ed-4ed7-8183-58a424cf398b' date '9 June 2010' time '4:38:39 pm' author 'ToonVerwaest' ancestors ((id '532d9d12-6999-41f1-ae4a-63bb4880ec16')) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())(name 'Pinocchio-ToonVerwaest.296' message 'has to be cleaned up; but ok' id '4084a511-5c6f-4f93-9ca7-6d38e95a51f1' date '12 June 2010' time '4:45:15 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.295' message 'enable sends again' id '93d76f52-4a23-4858-b5a1-a8ae797037cd' date '12 June 2010' time '4:11:14 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.294' message 'push in bytecode' id '657025e0-d2dd-4cbd-b42f-6f0659644c13' date '12 June 2010' time '4:05:01 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.293' message 'pop->zap' id '98c5eb49-17bf-4e75-a366-e9352f7bba77' date '11 June 2010' time '11:18:17 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-CamilloBruni.292' message 'preparing for new image' id 'ae4c509c-3b02-48a5-9c60-fc9c714db087' date '11 June 2010' time '9:10:13 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-CamilloBruni.291' message 'new image' id '4c8df453-0bef-4a68-91c2-3b255f87c314' date '11 June 2010' time '8:50:47 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-CamilloBruni.290' message 'preparing for new image' id '66d9b9fc-d4f1-4cdd-9164-26260a6edb37' date '11 June 2010' time '8:49:56 pm' author 'CamilloBruni' ancestors ((id '8b0ffbfe-8c71-4664-85c7-c14160b47310')) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())(name 'Pinocchio-DavidGurtner.347' message 'adding PSocket' id '1f7fce63-fe7c-42e2-90e2-a7c18ef5817c' date '22 July 2010' time '3:02:59 pm' author 'DavidGurtner' ancestors ((name 'Pinocchio-DavidGurtner.346' message 'adding PSocket' id 'bc23aa6f-f6dd-4897-9982-7409c0f77a52' date '22 July 2010' time '3:02:29 pm' author 'DavidGurtner' ancestors ((id 'a3813a66-e915-46f2-ab5e-d8f0c66d3914')) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())(name 'Pinocchio-ewe.355' message 'Async socket working. Fixed also concurrency issue in yield. Still few glitches but the basics are there. ' id '58d56b6f-9e11-4d35-8324-e18be44a6d24' date '26 July 2010' time '4:48:18 pm' author 'ewe' ancestors ((name 'Pinocchio-CamilloBruni.354' message 'resetting SCParser upon export' id '3034324c-904e-476a-93f4-b9c577444774' date '26 July 2010' time '9:03:18 am' author 'CamilloBruni' ancestors ((name 'Pinocchio-CamilloBruni.353' message 'initialuzing the pinocchio gofer package properly' id 'e71840b1-d1f8-466d-bdc9-8428b5406d34' date '26 July 2010' time '8:46:18 am' author 'CamilloBruni' ancestors ((id 'cef27a75-963e-4902-8c0c-e541a910d9cc')) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())(name 'Pinocchio-ToonVerwaest.476' message 'small reduction in deleteRight overhead' id '5c70826b-2172-4ab9-8530-11b49fbebaf2' date '12 August 2010' time '11:11:25 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.475' message 'support for delete in addition to backspace' id '1e972915-3ab9-4e8f-9285-82de09f2ccae' date '12 August 2010' time '11:01:36 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-CamilloBruni.474' message 'disbling the SuperInstructor' id '53bb0b0f-780c-472d-bb13-de6fdc5caafe' date '12 August 2010' time '10:22:25 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-ToonVerwaest.473' message 'untangling readline and vterm' id 'ed474177-6f47-4f9b-9d42-930acd566b70' date '12 August 2010' time '10:16:50 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.472' message 'partial support for unfinished code' id '80cf337b-b741-4b53-8fba-9571ebe5e372' date '12 August 2010' time '6:38:05 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.471' message 'adding a smalltalk readline' id '123b93b5-3a0a-45b8-9dd6-e181aa4187a7' date '12 August 2010' time '6:10:06 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-CamilloBruni.470' message 'changin all new_Symbol_cached to new_Symbol' id '35e02538-c4fe-461f-8c82-4218aa3dbde0' date '12 August 2010' time '5:35:20 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-CamilloBruni.469' message 'writing out the monticello versioning number again' id '426873bb-797a-431d-ae3c-6da8e45a470e' date '11 August 2010' time '9:31:57 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-CamilloBruni.468' message 'dont declare the class for DictBucket' id '27efd174-00b6-4aed-8add-d38025cc99f0' date '10 August 2010' time '3:40:27 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-CamilloBruni.467' message 'cleaning up the classlinking' id '29a65a0b-f43f-46dd-99c1-851d1ff46392' date '10 August 2010' time '3:25:21 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-ToonVerwaest.466' message 'tiny optimizations' id 'e597d3be-3c61-471d-a4a2-e52def6ca4a8' date '10 August 2010' time '3:18:36 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.465' message 'fixed some random bugs; optimized PIndentableWriteStream' id '22a616d1-86db-48a0-ac94-92a027f1e59f' date '10 August 2010' time '2:55:17 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-CamilloBruni.464' message 'writing to buffer first; then optimized putting it on file' id 'd91d775d-fa19-4f7f-8ca9-cdabd894b94c' date '10 August 2010' time '12:23:11 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-CamilloBruni.463' message 'adding another missing method' id '85fa1565-93cc-457c-98c7-d2228fd78e16' date '10 August 2010' time '11:29:48 am' author 'CamilloBruni' ancestors ((name 'Pinocchio-CamilloBruni.462' message 'saving again' id 'c63c972b-9ca2-4dad-967a-18519f75ab83' date '10 August 2010' time '11:26:09 am' author 'CamilloBruni' ancestors ((name 'Pinocchio-CamilloBruni.461' message 'adding some changed newTestDictionary on TestResult to *Pinocchio ' id 'a74010ff-d1bf-4cfd-ab4a-d2edc0b30620' date '10 August 2010' time '9:53:50 am' author 'CamilloBruni' ancestors ((name 'Pinocchio-CamilloBruni.460' message 'adding some changed newTestDictionary on TestResult to *Pinocchio ' id '9b20e065-30c5-481b-8d6f-9bd82095242c' date '10 August 2010' time '9:36:57 am' author 'CamilloBruni' ancestors ((name 'Pinocchio-CamilloBruni.459' message 'fixing write on PWriteStream' id '2a7a1f77-7b51-4d78-be03-cfd82a5068d9' date '10 August 2010' time '8:23:17 am' author 'CamilloBruni' ancestors ((name 'Pinocchio-CamilloBruni.458' message 'saving without the kernel in the back shooting at you. friendly fire it said, before the image crashed...' id '96b525c1-ebd6-477a-8c46-fae09bce2a43' date '9 August 2010' time '10:47:54 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-CamilloBruni.457' message 'exporting the layout into each class'' C file' id '999c57b7-59d1-40ba-bddd-c5a52a8ff78f' date '9 August 2010' time '10:44:55 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-CamilloBruni.456' message 'Auto Commit on Exporting Pinocchio' id '7e40c598-ca29-43ce-81db-5ea987ade26e' date '9 August 2010' time '2:35:27 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-CamilloBruni.455' message 'Auto Commit on Exporting Pinocchio' id 'e8165623-9724-4327-ab12-f9acd46a0f5e' date '9 August 2010' time '2:25 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-CamilloBruni.454' message 'trying to add kernel klasses with a swiss accent' id '2850847d-f56b-4b80-ac21-2f871d753df2' date '9 August 2010' time '1:23:44 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-CamilloBruni.453' message 'empty log message' id 'bb159684-2a1e-43e5-a45e-d4c1584394ae' date '9 August 2010' time '1:19:48 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-CamilloBruni.452' message 'empty log message' id '7521b8bd-c0a1-464f-88e2-4f5afe5823d4' date '9 August 2010' time '1:18:18 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-CamilloBruni.451' message 'empty log message' id 'f57b7450-fc85-4454-b358-e6b7c80c6c76' date '9 August 2010' time '1:16:29 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-CamilloBruni.450' message 'adding kernel klasses' id '97b4b6bf-bc55-448d-bd22-e5f363b4876f' date '9 August 2010' time '1:15:44 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-CamilloBruni.449' message 'trying to add kernel klasses with a swiss accent' id '23b1c219-e44e-4c2b-bcb7-555ca3f8d65f' date '9 August 2010' time '1:15:03 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-ToonVerwaest.448' message 'use standard version for at:ifAbsentPut:; otherwise seems to give race issues' id 'b121ffb4-c640-4beb-80b3-4c4752de0e63' date '9 August 2010' time '12:08:04 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.447' message 'fixing subclassing of string/symbol' id 'bd771c61-86e5-40b0-ae78-9f1865472dac' date '9 August 2010' time '11:38:56 am' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.446' message 'adding inspect info to OrderedCollection' id '8e3ca297-338e-49ee-a6de-18b719f7a713' date '7 August 2010' time '10:53:07 am' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.445' message 'don''t export True/False' id '0157fbe9-8210-47f1-9f77-3b8417ff66d1' date '7 August 2010' time '10:40:52 am' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.444' message 'fixing accessibility of true/false/nil and adding error when assigning to constants' id 'f4b2a4bb-c142-4743-9ba0-ed7457f19b65' date '6 August 2010' time '7:58:01 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.443' message 'removing Pinocchio-Type in favor of Pinocchio-Object and Pinocchio-String' id '7db0644c-5d77-4f98-81b2-c0d45f800025' date '6 August 2010' time '7:40:22 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.442' message 'undoing the last change; actually better to see what the key is.' id '702af49f-fcf6-44a4-9c03-2597ebf829b1' date '6 August 2010' time '7:20:51 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.441' message 'nicer inspect labels in case of string/symbol' id '020eb314-cca8-497c-9c04-0e1e76030ea3' date '6 August 2010' time '7:19:32 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.440' message 'cleaning up the Inspector code' id '6b63f6ef-c5bf-42fd-8ea2-3b897f510d22' date '6 August 2010' time '7:17:46 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.439' message 'more finetuning; mostly printing stuff.' id '1624dad7-489d-4405-aae9-26aa60c4baa1' date '6 August 2010' time '7:12:25 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.438' message 'adding some nicer error messages' id 'abdd7f24-870f-42db-a589-a11b21217985' date '6 August 2010' time '6:59:19 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.437' message 'got rid of all nextPut(All) methods; except in Testblabla. cami can do that manually ;)' id 'de8dea14-4d72-4cec-ab28-097a98286089' date '6 August 2010' time '6:43:23 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.436' message 'start using write/writeAll for writing on streams. try to get rid of nextPut/nextPutAll altogether ' id 'dc583d04-1da3-4b06-8ff9-e81a68352a7e' date '6 August 2010' time '6:26:35 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.435' message 'cleaning up printing code.' id 'd2e2642d-5157-41d5-a551-ebd22b654ae4' date '6 August 2010' time '5:53:52 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.434' message 'stop using nextPutAll: and nextPut: everywhere; except in putOn:' id 'd984eafa-0b93-4a0b-8561-6c897abe685d' date '6 August 2010' time '5:40:36 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.433' message 'starting to use PTerminal' id '880c9c77-ee86-49ad-8255-eb7b8b13fad6' date '6 August 2010' time '5:09:43 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.432' message 'more cleaning up' id 'a2f23d20-1ab0-4459-8ec8-622fb46f2251' date '6 August 2010' time '4:33:46 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.431' message 'don''t put chars in ''''' id 'ba330424-f1ba-4cdb-8f9b-ed9a590f6b40' date '6 August 2010' time '4:16:07 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.430' message 'skip separators before starting to parse method.' id 'e676f5dd-6a83-48fe-860b-fb7b0af8dade' date '6 August 2010' time '3:16:13 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.429' message 'proper variable naming; depending on scope.' id '68262b63-08d8-4a30-bdf8-5ee56190cb66' date '6 August 2010' time '3:00:10 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.428' message 'exporting CharacterLayout' id '58f44327-e4a2-4231-98e5-7df83c669349' date '6 August 2010' time '12:13:34 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.427' message 'adding putOn: for character. Seems to have more bugs; must be the broken compiler...' id '58dfcbe3-c656-4c43-9d7f-a80ad1c50b54' date '5 August 2010' time '8:02:03 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.426' message 'small optimization using array literals. don''t export the symboltable!' id '80c0b719-22cb-4d8b-8538-49f1af1a004c' date '5 August 2010' time '7:48:04 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.425' message 'fixing the code and a test' id '3a0741f6-e1b2-4a2d-946f-0b2b4ada43ef' date '5 August 2010' time '6:13:06 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.424' message 'using Hamersley again; at least more comparable' id 'd9f53407-2365-43a6-9c4d-6c620d6d5c33' date '5 August 2010' time '5:51:29 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-CamilloBruni.423' message 'creating better timed tests for PDict' id 'ed262ff9-768a-4a90-942b-9083d59fb3e4' date '5 August 2010' time '5:22:43 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-ToonVerwaest.422' message 'better benchmarks' id 'c0c55fa6-08f1-45a8-b9e3-5ddc7309ce23' date '5 August 2010' time '4:43:04 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.421' message 'fixed writeTest ' id '1127b454-10db-48b4-8e27-1997dca9600d' date '5 August 2010' time '4:33:23 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.420' message 'forgot to remove some of the test classes' id '987468aa-c7e8-4664-9f86-ea2ba214ee46' date '5 August 2010' time '4:13:54 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.419' message 'removing invalid bucket tests. maybe readd later..' id '45bd5aea-4a9d-4671-87bc-cc17bb5646d8' date '5 August 2010' time '4:10:52 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.418' message 'using P(Identity?)(Set|Dictionary) everywhere now.' id '8990aed3-55d7-43ee-b25f-fd8785146112' date '5 August 2010' time '4:05:15 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.417' message 'Dictionary code cleanup' id '82b41353-2a15-42ea-b409-06407b30a481' date '5 August 2010' time '2:25:01 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-CamilloBruni.416' message 'using a hamersley sequence to make the dict tests predictable' id '97ad33a0-65ee-480a-a817-4f9fc8cd7429' date '5 August 2010' time '1:42:13 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-ToonVerwaest.415' message 'optimizing dicts' id 'b33d93a2-6d3d-4c84-a392-dc003c689846' date '5 August 2010' time '12:43:32 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.414' message 'adding a linear flag to PDictionary makes it quite a bit faster.' id '955ced4b-7310-4e0e-a133-426486099818' date '5 August 2010' time '12:42:23 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.413' message 'use ifNotNil: instead of ifNotNilDo:. ifNotNil: gets compiled away and is thus way faster.' id '1c38e593-50f5-448c-8772-968134ee1668' date '4 August 2010' time '3:55:04 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.412' message 'more identityDictionary use. need to start using PIdentitySet too; but first fix it.' id '7ff4df97-3dd9-41ca-8117-6e5c62ce1fe9' date '4 August 2010' time '3:28:55 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.411' message 'using PIdentityDictionary for PEG. It''s faster.' id 'c9634ede-5642-4e3c-aea6-5c3b1e894b0d' date '4 August 2010' time '3:25:40 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.410' message 'cleaning up dictionary / identitydictionary. making sure our hashes are not << 18.' id '67960057-74e6-4188-a7c8-e789bb38a521' date '4 August 2010' time '3:12:38 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.409' message 'reimplementation of PDictionary, PIdentityDictionary and PSet. PIdentitySet still to do; as well as adding more tests and performance profiling' id '45f9e99e-db57-49bf-b2ec-ad014de5364e' date '4 August 2010' time '11:57:51 am' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.408' message 'for now remove the name from ClassReference; get it from the Pinocchio class instead.' id 'b77cfb38-aa8e-496d-bef9-da4a1de99ad9' date '3 August 2010' time '9:10:05 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.407' message 'fixing package structure for new "toplevel" stuff' id '44548ff8-6215-47eb-a12a-69864602612c' date '3 August 2010' time '7:00:21 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.406' message 'exporting Slot as well. otherwise it obviously doesn''t work ;)' id '763dbed3-b0ab-4c06-a8ac-bded52092b92' date '3 August 2010' time '6:56:16 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.405' message 'more simplifying in asPClass / classlinker' id 'e2d7eea7-662d-468c-bee4-0afacc3c629d' date '3 August 2010' time '6:06:06 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.404' message 'cleaning up the API of PIdbox' id '6baff864-c5fc-425e-a2cc-ba0686c88819' date '3 August 2010' time '3:23:36 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.403' message 'more small cleanups ' id '80a389a8-ddd4-4f5a-98ca-fe146eda06ff' date '3 August 2010' time '2:16:58 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.402' message 'use PDictionary where possible ' id '79fed0b9-cbdd-4756-9680-43ac539d3457' date '3 August 2010' time '2:01:56 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.401' message 'more exporting cleanup. use literal arrays instead of OrderedCollections...' id 'c5cae9b0-222b-436e-9113-60784d88f6fb' date '3 August 2010' time '12:32:40 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.400' message 'a bit more sense making in exporting' id '4d69d9e5-46a1-4141-bae1-7439dd79b70c' date '3 August 2010' time '11:49:16 am' author 'ToonVerwaest' ancestors ((name 'Pinocchio-CamilloBruni.399' message 'adding more forgotten souls (aka. methods)' id '310ede1d-e3a6-4994-8689-c6d1eee1fb0a' date '2 August 2010' time '11:01:47 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-CamilloBruni.398' message 'comitting some forgotten methods' id '3e2deefe-1999-4674-9257-1e2b48e452a5' date '2 August 2010' time '10:59:53 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-CamilloBruni.397' message 'missing *PInocchio categorization added on ArrayedCollection' id 'ec512441-0f6b-49b4-bfb4-1e09a67f8eb6' date '2 August 2010' time '6:00:38 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-ToonVerwaest.396' message 'removing some old classes' id '0cb5c28c-28aa-48a8-a4a0-c08291acd5e8' date '2 August 2010' time '4:40:40 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.395' message 'fixing some tests' id '2f8f6ee4-1a45-44d8-9a7c-6ed1d75b9128' date '2 August 2010' time '4:27:33 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.394' message 'fixing << on NewlineStandardFileStream ' id 'ee0458be-70e2-4a7b-8f62-d25965b91147' date '2 August 2010' time '3:32:48 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.393' message 'use ifNotNilDo: rather than ifNotNil: if you want to get in a value' id '1f4da288-25d9-4150-9de5-c959bc1d92d5' date '2 August 2010' time '12:34:09 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.392' message 'forgot to preventExport ' id '3a6736cb-3369-4796-aaef-43063e3477dc' date '2 August 2010' time '12:00:47 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.391' message 'better integration with pharo: flag Pinocchio exceptions a bit more nicely' id '64f35571-9ff3-4bcd-b663-3548c80f5f6e' date '2 August 2010' time '11:42:27 am' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.390' message 'adding a parsingfailure guess based on the longest cached match.' id 'ace6a14e-81aa-4b5d-9e47-678a824a0879' date '2 August 2010' time '11:33:04 am' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.389' message 'reinserting the atEnd check; moving stack initialization to PEGStringScanner' id '4ec377d7-1c6e-4a97-9eba-de8b491d9076' date '2 August 2010' time '10:20:29 am' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.388' message 'fixing the parser tests. seems to be faster now?' id 'b04ecb68-2b2f-458d-b777-32b267e9b870' date '2 August 2010' time '10:13:30 am' author 'ToonVerwaest' ancestors ((name 'Pinocchio-CamilloBruni.387' message 'trying to fix exporting. more modular right but still not fully refactored, there are way to many hardcoded uids spread over the system.' id 'd7a1d2bd-7688-406a-8470-f0435d35b192' date '2 August 2010' time '12:33:55 am' author 'CamilloBruni' ancestors ((name 'Pinocchio-ToonVerwaest.386' message 'grrr camillo; update before you commit! :)' id '617ee129-9785-496d-8356-bd2889f9225d' date '1 August 2010' time '8:40:37 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.385' message 'making the REPL work again. file parsing doesn''t seem to always work yet ...' id '1e953bc6-04e8-4fb7-ac5c-2d43d5b27d7d' date '1 August 2010' time '12:03:02 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.384' message 'up to 242''000 with some more ST tweaks' id 'eeaf9628-467c-4209-8220-9bb43dfb27ea' date '31 July 2010' time '10:21:29 am' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.383' message 'simplifying radix by relying on numberFormat -> 241''000' id '70d29037-71bb-4ae3-894b-a496a6dfb643' date '31 July 2010' time '10:08:11 am' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.382' message 'small ST parser tweaks -> 240''000' id 'ed28ac77-6bc2-468f-87ea-85ed35404286' date '31 July 2010' time '10:04:55 am' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.381' message 'removed another one of those methods' id 'aac78d07-a66c-4e29-af74-4266f1e6d2b3' date '31 July 2010' time '9:59:01 am' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.380' message 'removing some initialize methods' id '4e92f5ba-2b3a-4ee5-a1c9-13238d725411' date '31 July 2010' time '9:57:51 am' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.379' message 'minor parser fixes; goes up to 236''000 now' id '048684e9-daad-41d1-adf0-388b7732d93e' date '31 July 2010' time '9:50:24 am' author 'ToonVerwaest' ancestors ((name 'Pinocchio-CamilloBruni.378' message 'fixing export of stream and added missing method on String (which should be done via proper inheritance from Collection)' id '73f4a63b-3a99-40e3-9aca-0328502d9dc6' date '30 July 2010' time '11:39:33 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-ToonVerwaest.369' message 'slight tweaks / cleanups' id 'fabb0fcc-6642-43f6-9b2b-e4a4fd04026e' date '29 July 2010' time '2:33:36 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.368' message 'slight optimization in scan' id '18806035-5024-459f-8448-c42959c81392' date '29 July 2010' time '1:53:56 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.367' message 'up to 190''000 chars/sec' id '95ec3d85-ae8b-4130-9600-e9d53930601f' date '29 July 2010' time '1:46:36 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.366' message 'adding support for fucked up smalltalk symbols' id '9671ed52-ad81-4808-8fdd-60b42885c893' date '29 July 2010' time '1:08:04 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.365' message 'more cleanups. Using IdentityDictionary instead of Dictionary for caches; copying over newFrom: to PEGStack for faster conversion. Goes up to 183''xxx now' id 'd68c3cec-d89d-4bb5-a8a2-4470e8d96ba8' date '29 July 2010' time '1:01:16 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.364' message 'more work on parsing. now at 173''000 chars/sec' id 'e086dfae-fca0-49b2-9117-2dc80c76a127' date '29 July 2010' time '10:28:39 am' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.363' message 'slight optimization on Not' id 'c35d437e-a6f1-4ab4-b4d2-fcd3e6e27d83' date '28 July 2010' time '5:46:58 pm' author 'ToonVerwaest' ancestors ((id 'c897fef5-c213-49eb-a900-a91b3abb5f9c')) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())(name 'Pinocchio-ToonVerwaest.377' message 'more nitpick cleanup 233''000 seems to be close to the limit with pushing.' id 'e308a10e-95ac-4577-aec5-cc6eb3b4499d' date '30 July 2010' time '11:28:20 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.376' message 'another one' id '348f89dc-b9ff-46f0-87ef-455e0294d21a' date '30 July 2010' time '10:09:09 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.375' message 'fixed the bug I introduced' id '3f38a846-0d9e-4a80-aa3a-a876734e0c35' date '30 July 2010' time '10:08:06 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.374' message 'small tweak' id '0790586f-721a-497b-a4db-f6f4bbd1add0' date '30 July 2010' time '10:07:06 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-CamilloBruni.373' message 'making exporting a bit faster' id '999e82fe-dad2-4f23-8f70-c5f6a96b96e4' date '30 July 2010' time '3:53:36 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-ToonVerwaest.372' message 'small cleanup; ready for the next optimization' id 'b81bb438-be0b-4658-9cac-40c0d1768dfe' date '30 July 2010' time '3:41:45 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.371' message 'reapplying lost optimizations in faster setting. 225''000 chars/sec' id '4fd76810-fb43-4771-8bf7-60a0e313f5ab' date '30 July 2010' time '10:10:35 am' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.370' message 'retry' id '2ec0273c-cf65-4a65-b431-5b4abfa1841f' date '29 July 2010' time '11:18:55 pm' author 'ToonVerwaest' ancestors ((id '95ec3d85-ae8b-4130-9600-e9d53930601f')) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())(name 'Pinocchio-CamilloBruni.385' message 'Auto Commit on Exporting Pinocchio' id 'fcd99013-c156-41ce-86f8-aa5b1897cdd5' date '1 August 2010' time '8:36:37 pm' author 'CamilloBruni' ancestors ((id 'eeaf9628-467c-4209-8220-9bb43dfb27ea')) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())(name 'Pinocchio-ToonVerwaest.451' message 'better organization' id '5b0e78e3-06bc-4ff1-9ec9-5228e9ccf710' date '9 August 2010' time '8:26:31 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.450' message 'more restructuring.' id '60675cc6-e519-4b89-a823-d62005827927' date '9 August 2010' time '6:24:56 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.449' message 'moving around classes' id '29197505-8f78-44dd-931f-ee2a89ae5ed7' date '9 August 2010' time '3:37:47 pm' author 'ToonVerwaest' ancestors ((id 'b121ffb4-c640-4beb-80b3-4c4752de0e63')) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())(name 'Pinocchio-CamilloBruni.472' message 'Auto Commit on Exporting Pinocchio' id '6f6b1013-2f45-4346-82fd-73dc528a23de' date '12 August 2010' time '9:49:51 pm' author 'CamilloBruni' ancestors ((id '123b93b5-3a0a-45b8-9dd6-e181aa4187a7')) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())(name 'Pinocchio-ewe.523' message 'starting on Time, Date and the such, not working atm! also started porting WebClient, will only have very base functionality in the end though.' id 'f5e5528c-2e6c-4bbb-85ed-94d2b2b2710d' date '25 August 2010' time '12:20:31 pm' author 'ewe' ancestors ((id 'f0649e40-72b5-47ad-bf84-785563d530b9')) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())(name 'Pinocchio-ToonVerwaest.549' message 'cleaning up and fixing ifTrue/ifFalse to:do:' id 'a5e4e8d9-d32e-4d64-b251-fafa325ed7c8' date '1 September 2010' time '3:51:11 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.548' message 'working towards to:by:do: and adding a native includesKey:' id '4aea077c-ff58-43d8-b2d7-1db0c63a35cb' date '1 September 2010' time '2:29:56 pm' author 'ToonVerwaest' ancestors ((id '4fb2c965-b119-48b1-903e-c39ce5e0ff5b')) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())(name 'Pinocchio-ewe.555' message 'WebServer working!' id 'e286855e-76cb-4e6a-93b8-af7d15e7bd58' date '13 September 2010' time '4:34:46 pm' author 'ewe' ancestors ((name 'Pinocchio-DavidGurtner.554' message 'work in progress: WebClient....' id '61a747ba-3de7-4cd3-9f96-3996a3de0d4d' date '9 September 2010' time '8:55:31 pm' author 'DavidGurtner' ancestors ((name 'Pinocchio-DavidGurtner.553' message 'WebServer work in progress' id '2664b559-b2c1-41ad-a5ca-3989533ec9d3' date '8 September 2010' time '8:11:10 pm' author 'DavidGurtner' ancestors ((id '9ce55333-d5fe-49c4-af5c-1ce2d5765283')) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())(name 'Pinocchio-ToonVerwaest.585' message 'saving threaded code in ThreadedCode instance to avoid crashing when inspecting (and having more specific objects rather than generic stuff)' id '5ad5bb4d-6bc4-40b9-b719-66e9318c5417' date '30 September 2010' time '12:02:59 pm' author 'ToonVerwaest' ancestors ((id '74602f61-5d77-444f-9780-860ba31fddf7')) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ()) \ No newline at end of file +(name 'Pinocchio-ToonVerwaest.598' message 'slight freeze-related changes.' id 'd7487298-990a-4a34-8f3d-c0f3426032a6' date '18 October 2010' time '2:41:01 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.597' message 'small cleanups' id 'a3be213d-b438-4255-8a2d-d07aba50484c' date '14 October 2010' time '6:53:14 am' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.596' message 'detail: show the name of class references when inspecting.' id '179e7f06-450a-4d77-85b9-38523e7b4f35' date '14 October 2010' time '6:34:11 am' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.595' message 'slight cleanup of the shell (in result; not necessarily code)' id 'cfaa6560-34d8-4d9f-b287-7635ef4195e3' date '14 October 2010' time '4:37:27 am' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.594' message 'fixing Super, again...' id 'ab93ade0-7eb8-43b8-83a0-5df3fd7302a5' date '14 October 2010' time '4:29:56 am' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.593' message 'slighty extended the alias model to make it more demoable' id '5b356d8e-0c1a-43a2-b2bb-18436d0cb8f8' date '14 October 2010' time '2:58:16 am' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.592' message 'more presentation cuts' id 'f980d113-1e1b-4b26-adae-f4055458b09a' date '14 October 2010' time '2:50:47 am' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.591' message 'fixed a test' id '11d9eb20-e3bb-4905-9fa4-1d740e9deac2' date '14 October 2010' time '1:30:18 am' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.590' message 'more demo-papercuts' id '68279570-0d89-40a9-becb-f0d938cf7274' date '14 October 2010' time '12:49:03 am' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.589' message 'fixed the alias interpreter.' id '1b29464f-3435-4849-b29e-48eef16292c5' date '13 October 2010' time '6:56:11 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.588' message 'fixing virgin load' id 'db523e8c-d23c-4215-866f-2bab59f17df5' date '12 October 2010' time '5:11:56 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.587' message 'renaming MainInterpreter to main (interpreter is already part of the package name)' id 'b5708e8b-2a9b-4807-93e6-9e529820edf2' date '30 September 2010' time '4:47:51 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.586' message 'decoupling pharoname / pinocchio names and exporting more consistently with nicer names.' id '3685db9f-1289-42e0-b128-7831cea47ed4' date '30 September 2010' time '3:07:41 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.584' message 'switching to method dictionary. (+ fixed symbol hash in C)' id '74602f61-5d77-444f-9780-860ba31fddf7' date '29 September 2010' time '1:47:46 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.583' message 'more papercuts' id 'cedd34a1-e591-450d-bef6-550a157d5d66' date '28 September 2010' time '2:43:12 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.582' message 'removing name from Info' id '01482812-1000-47bb-b233-f7965ba0cf25' date '28 September 2010' time '12:03:10 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.581' message 'ignore the native pointer for now in NativeMethod / ReflectionMethod' id '2e50e353-69df-454a-9fe2-40795e057474' date '28 September 2010' time '11:50:29 am' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.580' message 'fixing lots of "paper cuts". disabled stack trace for now since it isn''t properly working ...' id 'baf2ec11-9979-4b0f-9908-8ce703f3edbf' date '24 September 2010' time '3:20:32 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.579' message 'small changes, including fixes for the problem Erwann had with nested blocks (see C code)' id 'e08b5ffb-3f3c-4f48-81f2-aba90c2f8864' date '22 September 2010' time '1:34:13 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.578' message 'removing necessity of C support for swapInvokeNative' id '00137ebc-85f0-46c0-abd9-595f2cd9c83a' date '15 September 2010' time '1:36:15 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.577' message 'small fixes in the mceval' id '4ccbe951-9f68-4a8e-b24f-94cc72b57324' date '15 September 2010' time '12:20:29 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.576' message 'merged with EWE 555' id '0a58f3a4-a763-4651-9614-850ef3827dda' date '14 September 2010' time '2:49:05 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.575' message 'random small improvements' id '72b51d74-222a-4a4b-bbbb-6fb1e46198ac' date '13 September 2010' time '5:37:36 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.574' message 'fixing small random bugs for the MC Interpreter.' id 'beab1c7a-8daf-43d2-95e8-2fad0edf548b' date '13 September 2010' time '3:26:42 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.573' message 'small changes all around' id '61d70b4f-ff18-4a9c-9886-109c82083e78' date '10 September 2010' time '5:54:57 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.572' message 'adding package imports' id 'a5a19da4-8656-449b-abfb-54d8821d80ed' date '10 September 2010' time '9:05:33 am' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.571' message 'remove info from methodclosure' id '1658b24d-ce3d-4541-8e23-72aa31ea9f26' date '9 September 2010' time '3:32:25 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.570' message 'compile in threaded code as alternative for reflection and native methods.' id 'e7df78f6-ff2d-47e1-a4f1-bd1d6a78e696' date '9 September 2010' time '3:22:41 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-CamilloBruni.569' message 'fixing probing in PBenchmark' id 'db24b1a8-b579-45b9-9e34-8b21bcf8a0ad' date '8 September 2010' time '3:28:49 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-ToonVerwaest.568' message 'adding IdentityDict primitives. still have to switch to IdentityDictBuckets!' id 'e966ec83-0572-447a-87af-71990e802e57' date '8 September 2010' time '2:22:15 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.567' message 'removing tons of conversions' id '906190cb-df57-42e6-8911-464e37edc758' date '7 September 2010' time '4:06:49 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.566' message 'lots of small changes in parsing / AST generation and it''s related compilation.' id '93660388-27b1-42a1-bc8e-44802da13d94' date '7 September 2010' time '3:48:27 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.565' message 'changing the way names are created. moved more to the classlinker.' id '5d5968eb-f836-4c9b-b809-75116bc1c642' date '7 September 2010' time '2:44:36 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.564' message 'export the benchmarks ' id '620904db-2826-451d-a3c5-c57684c9ed41' date '6 September 2010' time '5:44:42 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.563' message 'trying to remove empty packages ... again?' id '61a8a2da-eaeb-4f57-adec-8a5524c12204' date '6 September 2010' time '4:42:20 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-CamilloBruni.562' message 'moving benchmarks around and adding them again to the exported basic classes' id 'a8b54a8d-bb10-490d-8edc-04b750a92744' date '6 September 2010' time '4:38:50 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-ToonVerwaest.561' message 'injecting more IdentityDictionaries. Fucking SymbolTable is SLOW!' id 'eb870834-3950-418c-a77c-af9b49f14d59' date '6 September 2010' time '4:33:18 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.560' message 'working towards decent methoddicts' id '5a7a1ca1-b909-4c31-82db-d49e025008d6' date '6 September 2010' time '3:38:40 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.559' message 'trying to get rid of empty categories' id '5daaf5e6-ade0-4de9-a35f-6e05465fc19f' date '6 September 2010' time '3:13:48 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.558' message 'trying to add as required package' id '745b7604-15d2-494a-bc58-e3f36ed634da' date '6 September 2010' time '11:27:57 am' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.557' message 'giving it yet another try' id '2503e5c5-c15d-4407-b047-45e4ca03ba44' date '6 September 2010' time '11:27:03 am' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.556' message 'trying to commit my changes again ...' id 'a9ff47c5-8148-4fd9-938e-005e84a140e1' date '6 September 2010' time '11:24:25 am' author 'ToonVerwaest' ancestors ((name 'Pinocchio-CamilloBruni.555' message 'adding required package PBenchmark again.' id 'f6f87db3-f639-4c2d-983a-f802703559ad' date '5 September 2010' time '10:44:43 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-CamilloBruni.554' message 'creating a cleaner version of PBenchmark without Pinocchio related code' id '4f4314ad-7183-47ad-88e3-ddc68e0d116a' date '5 September 2010' time '10:41:28 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-CamilloBruni.553' message 'removing dependency on PDictionary in PBenchmark' id 'b0835ffc-52cf-498c-a9ab-585516665a2e' date '5 September 2010' time '9:46:12 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-ewe.552' message 'Some progress on porting PWebSocket and PSocketStream.' id '9ce55333-d5fe-49c4-af5c-1ce2d5765283' date '2 September 2010' time '4:18:09 pm' author 'ewe' ancestors ((name 'Pinocchio-ewe.551' message 'changes on Socket: - nilling the handle on destroy - fixing and testing remotePort and remoteHost' id '7693289f-a792-45bd-b6b4-d030cece5c69' date '2 September 2010' time '1:49:55 pm' author 'ewe' ancestors ((name 'Pinocchio-DavidGurtner.550' message 'porting WebClient, work in progress. adding methods here and there... added PText/Text to linker as it failed exporting otherwise. ' id 'cb6c360f-aed4-46cc-8dce-5209bb92b5ae' date '1 September 2010' time '7:04:42 pm' author 'DavidGurtner' ancestors ((name 'Pinocchio-ewe.548' message 'work in progress' id 'fa7c2427-b631-4367-99b6-8f6da1800aa7' date '1 September 2010' time '8:39:33 am' author 'ewe' ancestors ((name 'Pinocchio-ToonVerwaest.547' message 'tons of small changes' id '4fb2c965-b119-48b1-903e-c39ce5e0ff5b' date '31 August 2010' time '5:19:20 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.546' message 'nicer benchmark inspection disabling the strange +/- char for now. too annoying.' id '0cf4c977-e866-473f-b255-a8d439735372' date '31 August 2010' time '3:04:52 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.545' message 'simplifying and improving the inspector protocol & performance' id 'ad6e0969-cb31-4328-8e16-cac6b14f8618' date '31 August 2010' time '2:41:10 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-CamilloBruni.544' message 'adding to:do: benchmark (still 10times slower there)' id '8a71a1b8-fd5f-4b47-833e-3e813f6eb10a' date '30 August 2010' time '9:47:38 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-CamilloBruni.543' message 'removing strange unicode character' id '87549052-82ad-460e-8493-5e2e0d91832f' date '30 August 2010' time '8:51:24 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-ewe.542' message 'Added concurrency.Semaphore and concurrency.AtomicBoolean' id 'd6419440-ec17-4e13-8d04-5edc83761316' date '30 August 2010' time '3:14:54 pm' author 'ewe' ancestors ((name 'Pinocchio-ToonVerwaest.541' message 'don''t support whitespace halfway floats' id '9a8accbe-dcc7-4bab-a596-9fb289fbb6b9' date '30 August 2010' time '1:43:36 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.540' message 'fixing float parsing and enabling it.' id '8d47172d-f4e8-4cc7-acce-a18eb5920d1d' date '30 August 2010' time '1:27:47 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-CamilloBruni.539' message 'reenabling to:do: opcodes. seems to break some functionality in the arrayed code (at:put:)' id '844b1b84-2ce6-494c-8ece-1b211166a186' date '29 August 2010' time '5:22 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-CamilloBruni.538' message 'adding more Float/Int support to make the Benchmarks work' id '306d56eb-10ed-4d39-b80a-40b542e158b0' date '28 August 2010' time '8:18:57 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-CamilloBruni.537' message 'adding basic float support' id '485b32bd-b4fa-4e03-b34f-8e7f13d1adb6' date '27 August 2010' time '10:43:21 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-CamilloBruni.536' message 'adding support for milliseconds and microseconds on Chronology.Time' id '7b198337-abab-4ee7-8dc4-c8888ca0ab20' date '27 August 2010' time '4:40:24 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-DavidGurtner.535' message 'Basic version of Date, Time and such working...' id 'f0f86ee0-a3d7-4844-b06f-1d8a88381441' date '26 August 2010' time '6:55:36 pm' author 'DavidGurtner' ancestors ((name 'Pinocchio-DavidGurtner.534' message 'More work on Date and Time' id '57b88236-579e-4222-8b47-ebcbe6731de0' date '25 August 2010' time '5:46:21 pm' author 'DavidGurtner' ancestors ((name 'Pinocchio-CamilloBruni.533' message 'first version of PBenchmark' id '9b2c517b-5c28-4dbe-9fef-55ccf7976ed5' date '25 August 2010' time '5:18:53 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-CamilloBruni.532' message 'trying to add PBenchmark dependency' id '7e631490-c7ca-409a-a844-dd411715f998' date '25 August 2010' time '5:17:56 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-CamilloBruni.531' message 'adding more benchmarks' id '8729ee8a-b383-4e38-8df5-52edc2eee7b4' date '25 August 2010' time '5:16:28 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-ToonVerwaest.530' message 'removing _ as valid assignment operator' id 'e796ade4-5466-4b16-b94a-642eb5dbd799' date '25 August 2010' time '3:54:38 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-CamilloBruni.529' message 'ctrl-k deletes till the end of line' id 'e689f97f-5a6a-4f84-9b99-076c3641890e' date '25 August 2010' time '3:50:32 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-CamilloBruni.528' message 'chaning end/start to line navigation and pageUp/Down to whole text navigation' id '5ab50847-6538-4cb1-95ed-7ad7d49cae24' date '25 August 2010' time '3:33:57 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-CamilloBruni.527' message 'adding more commandline navigation ctrl-a ctrl-e home end' id 'd6a2f1ec-62a4-4547-8c35-b47b84f5ec48' date '25 August 2010' time '3:23:05 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-ToonVerwaest.526' message 'fixing block format & empty substatements' id '54619a5a-c9b3-4ad8-bdf9-429ed7acefae' date '25 August 2010' time '2:30:02 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-CamilloBruni.525' message 'plugins on class side are now exported as well' id 'f7b10614-7176-4a45-a8ef-6b0c9dafdf48' date '25 August 2010' time '1:54:25 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-CamilloBruni.524' message 'merging with erwann' id '89201c54-4c64-41b2-95bc-4104fc48b851' date '25 August 2010' time '1:25:19 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-CamilloBruni.523' message 'extending the Pharo Scanner with ! and ? for selectors' id '18709ac5-6d32-423c-9743-c05295e5494a' date '25 August 2010' time '11:58:47 am' author 'CamilloBruni' ancestors ((name 'Pinocchio-CamilloBruni.522' message 'working on getting the TestCases working. replaced some valuesDo: with do: (valuesDo: doesn''t work on Sets)' id 'f0649e40-72b5-47ad-bf84-785563d530b9' date '24 August 2010' time '2:19:55 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-CamilloBruni.521' message 'fixing environment freezing for exceptions. added stacktrace printout to the shell' id '905c9068-5009-44d3-9d02-b76ab51a015c' date '23 August 2010' time '11:07:02 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-ToonVerwaest.520' message 'fixing PEG parent (hopefully) and fixing initialize to use bools in context objects' id '67aa6797-fd1c-4eb9-af28-1cebc26606b1' date '23 August 2010' time '11:05:09 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.519' message 'turn off printing the warning' id '2f4da5b1-7465-427d-9e4a-e710d7f1deb6' date '23 August 2010' time '11:01:41 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-CamilloBruni.518' message 'resetting the PEGParser as well' id 'f7f13054-b91e-4a98-a0bf-9d9331e5a88f' date '23 August 2010' time '12:01:23 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-CamilloBruni.517' message 'adding decent benchmark suite. some primitve string/number benchmarks are there already' id '7396951c-37f4-4691-83a2-5a9e0531b15e' date '21 August 2010' time '4:14:23 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-ToonVerwaest.516' message 'tiny readline changes' id '97e96da9-26e6-4956-9076-11c8cd6391b1' date '20 August 2010' time '2:23:40 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.515' message 'fixing dependencies between inputdriver / readline / stdin. inputdriver shouldn''t know about readline.' id '5a48e078-5e94-450a-bd19-aab26d0db07d' date '20 August 2010' time '2:20:30 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.514' message 'removing the native version of PDictionary>>at: since it''s inconsistent.' id '429dd21d-b18e-42e4-a9d3-404b0995a700' date '20 August 2010' time '12:09:51 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.513' message 'small stuff' id 'f327cbae-3236-431f-be3a-dd89f22a3898' date '20 August 2010' time '12:05:19 am' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.512' message 'fixed the bug I introduced.' id 'cbe17a24-bc99-4108-b008-460c0ccc2368' date '19 August 2010' time '11:59 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.511' message 'making omit the default for Character parsers; thus relieving the DSL a bit.' id 'd48afa37-ac23-4165-9ac6-2c97159962c8' date '19 August 2010' time '7:15:45 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.510' message 'optimizing the character parser by comparing integers 265''000 / 316''000' id 'b3641010-f95d-4744-bd56-a7ffbd28a61b' date '19 August 2010' time '5:27:50 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.509' message 'adding a character parser boosts speed back to (and beyond) the original speed. 256''000 / 310''000 chars/sec' id 'b9dc4942-04e1-448f-8a35-da8666c0bd96' date '19 August 2010' time '5:20:39 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.508' message 'improve the internal string API usage of the PEG. reduces speed by 10% which shouldn''t be the case on Pinocchio if we install the right primitives.' id '9d7a1f93-ed00-4b42-b5a6-9621f75fb2d6' date '19 August 2010' time '5:03:56 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.507' message 'relying more on Pharo natives in PEG parsing 307''000 chars/sec without AST generation 255''000 chars/sec with AST' id 'f8c2c88a-6271-4e84-bdfb-eddf018b3230' date '19 August 2010' time '4:34:46 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.506' message 'avoiding allocation by storing the longestmatch in the stringscanner' id '4a51f9d5-a3f5-4865-a0ce-8d6697576694' date '19 August 2010' time '2:57:53 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.505' message 'optimized, broke and fixed the PEG + its API. nil is now again a valid returnvalue for parsers.' id 'a1254739-f002-45a4-9396-87815d25518f' date '19 August 2010' time '1:35:14 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.504' message 'making threadedcompiler test subclass from compiler test. should be fixed but at least it runs for now.' id 'b9b86e3c-aabd-4be4-9264-baee42bc40e7' date '18 August 2010' time '11:19:24 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.503' message 'renaming SCParserTest to PSmalltalkParserTest' id 'cfa5e052-211e-4ad5-98fe-676b51bfa112' date '18 August 2010' time '11:16:24 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.502' message 'fixing parser tests' id 'd5c6df9e-5b2c-4a42-bb00-a4571de04100' date '18 August 2010' time '11:15:02 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.501' message 'making single-line repainting a bit more sane. multiline is still waaaay broken. Will wait for syntax-coloring to incorporate support for error repainting.' id 'e1288cc4-6dbc-4dc5-a7e7-1dc146488171' date '18 August 2010' time '11:09:05 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.500' message 'better errors for currently unsupported Array compilation' id '620449e7-4708-4052-a8f4-8005864bd2f3' date '18 August 2010' time '8:57:11 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.499' message 'making parser more pharo conform by allowing statements in brace expressions. not supported yet by the compiler though.' id 'e70af578-ff28-480c-b8c6-493d6b2e7449' date '18 August 2010' time '8:11:43 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.498' message 'clear failure before starting readline again.' id 'dc93c901-b86a-44d2-9e91-3c2a96ccc8f9' date '18 August 2010' time '7:22:04 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.497' message 'adding PHalt' id '846079d7-833d-4d04-a052-7c757b666163' date '18 August 2010' time '7:18:29 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.496' message 'nicer compilation errors' id 'b7b28a88-1d4d-44c1-8e19-b638c8be0e90' date '18 August 2010' time '6:47:05 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.495' message 'more error handling fixing the compiler-test class. still 4 broken tests; have to clean up that mess.' id 'ad443090-993c-4884-84d2-a7c457d0e30c' date '18 August 2010' time '6:40:05 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.494' message 'adding more exceptions' id '4bc8c566-04cf-4949-9d55-eda6ed2c18d0' date '18 August 2010' time '6:19:39 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.493' message 'fixing the error handling when reading from files' id '293d6f0c-5d53-45d4-adce-ece341f79712' date '18 August 2010' time '4:54:27 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.492' message 'more integration. remove the currentInfo and just install it in methods.' id 'f1cc9ed8-7681-448d-9c27-95984c8ec0a2' date '18 August 2010' time '4:48:59 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.491' message 'better pharo integration for exceptions started splitting the parser into multiple malleable classes' id '62d1db5e-1ca6-4663-9668-dd92b1b98fff' date '18 August 2010' time '4:23:15 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.490' message 'trying an incremental paint for better performance' id '120e2ba3-4c1d-4c86-a6e9-34d66ba3047a' date '18 August 2010' time '11:12:28 am' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.489' message 'just highlight the first character where parsing fails. currently repaints the whole text each time' id '8d003e4a-25b3-485a-92de-9d9312483071' date '17 August 2010' time '4:54:52 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.488' message 'ignore tab' id '7cf4c09a-efd5-4f90-93a1-6f4ab46ef4dc' date '17 August 2010' time '3:15:17 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.487' message 'trying to fix the parser by adding a DLL test. seems to be doing something ..' id '5ac63982-3452-4ac9-801e-a68ca1d2740b' date '17 August 2010' time '3:03:26 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.486' message 'abstracted out the PText to rely on the doublebuffer. might recode to use standard smalltalk text.' id '256a3561-9cd8-43c4-bff9-bd976b9ecb75' date '17 August 2010' time '2:36:13 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.485' message 'started work on error highlighting' id '7c3058a2-d1e9-4b38-9946-8a68ee18d6ac' date '17 August 2010' time '2:07:41 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-CamilloBruni.484' message 'ignoring $[ in CSI mode to support crappy ITerm on OSX' id '7ea30aa0-2a0f-40ff-801d-d34fc78e2161' date '17 August 2010' time '11:30:35 am' author 'CamilloBruni' ancestors ((name 'Pinocchio-CamilloBruni.483' message 'ignoring $[ in CSI mode to support crappy ITerm on OSX' id '26b672f2-85c5-4af2-9033-6e7b60ad6aad' date '17 August 2010' time '11:27:16 am' author 'CamilloBruni' ancestors ((name 'Pinocchio-ToonVerwaest.482' message 'merging with erwann''s code + adding initial termcap multiline REPL support' id 'edd18384-a113-41fe-9e36-c196050e815d' date '17 August 2010' time '11:04:06 am' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.481' message 'merging with erwann''s code + adding initial termcap multiline REPL support' id '9041850c-ac71-4460-94db-bf16eba6fe16' date '17 August 2010' time '11:00:35 am' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.480' message 'erwann + termcap multiline repl' id 'a3f6922d-4db2-46fd-a7f4-2682699be474' date '17 August 2010' time '10:59:40 am' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.479' message 'merging with erwann + termcap multiline REPL' id '6febcf33-0511-4a70-a2e5-41f8f212a3c8' date '17 August 2010' time '10:59:05 am' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.478' message 'merging with erwann''s code + adding initial termcap multiline REPL support' id 'f7391d7f-3b8a-4f07-91e0-e473d4517c7a' date '17 August 2010' time '10:58:38 am' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ewe.477' message 'Merge changes in PSocket and PSocketStream' id '45a2e421-8f8d-40be-88fc-f3664e56ef3a' date '16 August 2010' time '2:58:48 pm' author 'ewe' ancestors ((name 'Pinocchio-ewe.430' message 'Auto Commit on Exporting Pinocchio' id '684e36ba-59bf-4c35-958b-0d595e4440a7' date '13 August 2010' time '2:28:56 pm' author 'ewe' ancestors ((name 'Pinocchio-ewe.429' message 'Auto Commit on Exporting Pinocchio' id '2a22776a-c8c4-4801-b49a-396a8aa13cf7' date '12 August 2010' time '3:10:47 pm' author 'ewe' ancestors ((name 'Pinocchio-ewe.428' message 'Auto Commit on Exporting Pinocchio' id '2d8039bb-d1e0-4c16-9299-31d4c03c4438' date '12 August 2010' time '3:05:23 pm' author 'ewe' ancestors ((name 'Pinocchio-ewe.427' message 'Auto Commit on Exporting Pinocchio' id 'f300f659-c271-41be-b492-15ed326f0527' date '12 August 2010' time '2:41:04 pm' author 'ewe' ancestors ((name 'Pinocchio-ewe.426' message 'Auto Commit on Exporting Pinocchio' id 'a30e1655-0878-4999-b187-ba067ae2deaf' date '12 August 2010' time '12:15:34 pm' author 'ewe' ancestors ((name 'Pinocchio-ewe.425' message 'Auto Commit on Exporting Pinocchio' id '6b9f49e6-e62c-4347-87f0-6fc0a02de404' date '12 August 2010' time '12:14:42 pm' author 'ewe' ancestors ((name 'Pinocchio-ewe.424' message 'Auto Commit on Exporting Pinocchio' id 'ff0de24f-e773-4af9-8af9-d39f0824d067' date '12 August 2010' time '12:12:48 pm' author 'ewe' ancestors ((name 'Pinocchio-ewe.423' message 'Auto Commit on Exporting Pinocchio' id 'd1df48e4-b137-4c4b-b62b-4d44a9d90821' date '12 August 2010' time '12:05:37 pm' author 'ewe' ancestors ((name 'Pinocchio-ewe.422' message 'Auto Commit on Exporting Pinocchio' id '3feb3ab4-0499-42cd-a397-478e7d45e8ab' date '11 August 2010' time '4:27:04 pm' author 'ewe' ancestors ((name 'Pinocchio-ewe.421' message 'Auto Commit on Exporting Pinocchio' id 'f1baa5fa-a3c8-435f-ae3b-24051078f419' date '11 August 2010' time '11:45:34 am' author 'ewe' ancestors ((name 'Pinocchio-ewe.420' message 'Auto Commit on Exporting Pinocchio' id '5fd708fa-aa7e-4155-b1b5-be60a339b38d' date '11 August 2010' time '11:44:14 am' author 'ewe' ancestors ((name 'Pinocchio-ewe.419' message 'Auto Commit on Exporting Pinocchio' id '098833a0-4478-4098-ab4b-a2b89c5e55e7' date '11 August 2010' time '11:43:04 am' author 'ewe' ancestors ((name 'Pinocchio-ewe.418' message 'Auto Commit on Exporting Pinocchio' id 'ac9b1cca-ee2b-4fb0-83b5-c8a7c32fe552' date '11 August 2010' time '11:31:55 am' author 'ewe' ancestors ((name 'Pinocchio-ewe.417' message 'Auto Commit on Exporting Pinocchio' id 'ae158bbe-e444-426b-b481-aba742cbe27e' date '10 August 2010' time '12:12:27 pm' author 'ewe' ancestors ((name 'Pinocchio-ewe.416' message 'Auto Commit on Exporting Pinocchio' id 'ec83d81a-a6e8-4f44-be47-62215e9911bd' date '10 August 2010' time '11:08:51 am' author 'ewe' ancestors ((name 'Pinocchio-ewe.415' message 'Auto Commit on Exporting Pinocchio' id '89e3d766-eb1e-4d73-a4f7-953fe5bf6f6b' date '10 August 2010' time '10:54:35 am' author 'ewe' ancestors ((name 'Pinocchio-ewe.414' message 'Auto Commit on Exporting Pinocchio' id '30656cff-9123-4bdb-8af4-860e8b6c09ba' date '9 August 2010' time '4:31:28 pm' author 'ewe' ancestors ((name 'Pinocchio-ewe.413' message 'Auto Commit on Exporting Pinocchio' id '5e41d95f-5e80-488c-8436-51289f72fdde' date '9 August 2010' time '4:07:15 pm' author 'ewe' ancestors ((name 'Pinocchio-ewe.412' message 'Auto Commit on Exporting Pinocchio' id '88a35b8f-8ed6-43c3-bf65-7196749ff15c' date '9 August 2010' time '3:21:58 pm' author 'ewe' ancestors ((name 'Pinocchio-ewe.411' message 'Auto Commit on Exporting Pinocchio' id '6ab9c012-ac8b-4380-8046-9453fa3762f2' date '9 August 2010' time '2:58:43 pm' author 'ewe' ancestors ((name 'Pinocchio-ewe.410' message 'Auto Commit on Exporting Pinocchio' id 'b5bdece8-6d84-4ec1-9df1-39aa9c6a3dde' date '9 August 2010' time '2:44:02 pm' author 'ewe' ancestors ((name 'Pinocchio-ewe.409' message 'Auto Commit on Exporting Pinocchio' id '4cdb7c07-3578-4fb6-8bfa-dcf25094239e' date '9 August 2010' time '1:50:03 pm' author 'ewe' ancestors ((name 'Pinocchio-ewe.408' message 'Auto Commit on Exporting Pinocchio' id '0d06f223-338f-45bb-8f7b-51b312be0541' date '9 August 2010' time '1:46:39 pm' author 'ewe' ancestors ((name 'Pinocchio-ewe.407' message 'Auto Commit on Exporting Pinocchio' id '60cf8c84-a5d8-4606-abdf-abb13a8f8434' date '9 August 2010' time '12:19:45 pm' author 'ewe' ancestors ((name 'Pinocchio-ewe.406' message 'Auto Commit on Exporting Pinocchio' id '4acf1876-b002-4b3a-977d-f73e379ca982' date '9 August 2010' time '12:18:53 pm' author 'ewe' ancestors ((name 'Pinocchio-ewe.405' message 'Auto Commit on Exporting Pinocchio' id 'ceda07d7-abe8-4742-ab2c-a3e4f1605dd0' date '9 August 2010' time '12:18:27 pm' author 'ewe' ancestors ((name 'Pinocchio-ewe.404' message 'Auto Commit on Exporting Pinocchio' id 'ea0f8c8f-88e3-4151-88c9-a2632cc0712d' date '9 August 2010' time '12:12:48 pm' author 'ewe' ancestors ((name 'Pinocchio-ewe.403' message 'Auto Commit on Exporting Pinocchio' id 'f1551c6b-f52c-4193-af68-9135fcebfe4b' date '9 August 2010' time '12:09:44 pm' author 'ewe' ancestors ((name 'Pinocchio-ewe.402' message 'Auto Commit on Exporting Pinocchio' id 'b42ebc89-b1f0-41ba-8672-99414b971511' date '9 August 2010' time '11:55:53 am' author 'ewe' ancestors ((name 'Pinocchio-ewe.401' message 'Auto Commit on Exporting Pinocchio' id 'dd31a646-a84b-4747-81f4-50eedbbc6c7b' date '9 August 2010' time '11:54:44 am' author 'ewe' ancestors ((name 'Pinocchio-ewe.400' message 'Auto Commit on Exporting Pinocchio' id '03332bb6-7082-4a83-9169-c711a862f0a3' date '9 August 2010' time '11:53:13 am' author 'ewe' ancestors ((name 'Pinocchio-ewe.399' message 'Auto Commit on Exporting Pinocchio' id '6f5fa62f-6c5d-4333-9f09-c8454132177a' date '9 August 2010' time '11:14:02 am' author 'ewe' ancestors ((name 'Pinocchio-ewe.398' message 'Auto Commit on Exporting Pinocchio' id '5f02a448-0e68-4b9e-935f-0ef38370a93f' date '9 August 2010' time '11:01:07 am' author 'ewe' ancestors ((name 'Pinocchio-ewe.397' message 'Auto Commit on Exporting Pinocchio' id '5efdec24-3447-4702-b58c-cd44b1a08dbe' date '5 August 2010' time '4:39:11 pm' author 'ewe' ancestors ((name 'Pinocchio-ewe.396' message 'Auto Commit on Exporting Pinocchio' id 'cc7c36f4-db34-4709-a803-68ab6a99f566' date '5 August 2010' time '4:27:17 pm' author 'ewe' ancestors ((name 'Pinocchio-ewe.395' message 'Auto Commit on Exporting Pinocchio' id 'ea54dae3-ee33-4dee-9de9-900191a0b141' date '5 August 2010' time '4:16:15 pm' author 'ewe' ancestors ((name 'Pinocchio-ewe.394' message 'Auto Commit on Exporting Pinocchio' id 'd20edd83-6501-42eb-9db5-b142be81eede' date '5 August 2010' time '4:13:46 pm' author 'ewe' ancestors ((name 'Pinocchio-ewe.393' message 'Auto Commit on Exporting Pinocchio' id 'eefbc475-bd3f-42bb-814e-8ef380277fae' date '5 August 2010' time '3:13:11 pm' author 'ewe' ancestors ((name 'Pinocchio-ewe.392' message 'Auto Commit on Exporting Pinocchio' id '32c27dbd-b537-4dca-9425-9c028d568fa5' date '5 August 2010' time '2:52:51 pm' author 'ewe' ancestors ((name 'Pinocchio-ewe.391' message 'Auto Commit on Exporting Pinocchio' id '58c17f1c-3fcb-4e7d-97ca-59b712c881b2' date '5 August 2010' time '2:45:23 pm' author 'ewe' ancestors ((name 'Pinocchio-ewe.390' message 'Auto Commit on Exporting Pinocchio' id '58c02376-01c1-4b4d-8377-5a72049a820f' date '5 August 2010' time '2:44:42 pm' author 'ewe' ancestors ((name 'Pinocchio-ewe.389' message 'Auto Commit on Exporting Pinocchio' id '6fae6ade-926e-44ba-989d-ea9533ff8950' date '5 August 2010' time '2:43:32 pm' author 'ewe' ancestors ((name 'Pinocchio-ewe.388' message 'Auto Commit on Exporting Pinocchio' id '50c1b2f5-834d-4434-b8b6-c9ab7f79d060' date '4 August 2010' time '4:09:48 pm' author 'ewe' ancestors ((name 'Pinocchio-ewe.387' message 'Auto Commit on Exporting Pinocchio' id 'c5849b44-a281-4572-9984-d949249db809' date '4 August 2010' time '3:51:21 pm' author 'ewe' ancestors ((name 'Pinocchio-ewe.386' message 'Auto Commit on Exporting Pinocchio' id '6fd1e644-de23-45f6-ad45-9ae2451a50d6' date '4 August 2010' time '3:45:48 pm' author 'ewe' ancestors ((name 'Pinocchio-ewe.385' message 'Auto Commit on Exporting Pinocchio' id '42100342-320c-45d0-af9a-2c7300174639' date '4 August 2010' time '2:57:57 pm' author 'ewe' ancestors ((name 'Pinocchio-ewe.367' message 'Auto Commit on Exporting Pinocchio' id 'ca06b488-de1b-4787-ab0e-8ba758429319' date '3 August 2010' time '3:14:16 pm' author 'ewe' ancestors ((name 'Pinocchio-ewe.366' message 'Auto Commit on Exporting Pinocchio' id '40df64a1-348e-439d-a14b-9596aa19aa6a' date '3 August 2010' time '3:03:04 pm' author 'ewe' ancestors ((name 'Pinocchio-ewe.365' message 'Auto Commit on Exporting Pinocchio' id '7ebe1ae2-b883-443a-83bf-1eb32652e5ab' date '2 August 2010' time '4:29:41 pm' author 'ewe' ancestors ((name 'Pinocchio-ewe.364' message 'Auto Commit on Exporting Pinocchio' id 'bd1fdd21-ccce-4e39-a4b6-8ead3d156208' date '2 August 2010' time '3:21:15 pm' author 'ewe' ancestors ((name 'Pinocchio-ewe.363' message 'Auto Commit on Exporting Pinocchio' id '2fc8e9c8-cd1b-4183-8818-0d3f66ea6c12' date '2 August 2010' time '3:10:33 pm' author 'ewe' ancestors ((name 'Pinocchio-CamilloBruni.362' message 'finally made it work again (in some cases I guess) => there are bugs in our IdentitySets and Dicts.' id 'c897fef5-c213-49eb-a900-a91b3abb5f9c' date '28 July 2010' time '1:15:20 am' author 'CamilloBruni' ancestors ((name 'Pinocchio-ToonVerwaest.361' message 'moving the PEGStack into the PEGStringScanner' id '7363b682-5166-44df-b2ac-be5ec9926963' date '28 July 2010' time '12:52:36 am' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.360' message 'committing the newly optimized PEG (faster than petit? :))' id '4f33c5a6-8b7a-4998-9b86-62ad85913c19' date '28 July 2010' time '12:19:23 am' author 'ToonVerwaest' ancestors ((name 'Pinocchio-CamilloBruni.359' message 'fixing some PSet/PDict implementation. tuning export by using our own Dicts/Sets' id '58103938-279f-4306-930d-58bffc4f00e5' date '27 July 2010' time '10:45:22 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-CamilloBruni.358' message 'new export mechanisms. using a separate id generator to cleanup the code duality' id 'fdd7405f-6601-4a95-b0e3-04456cb67615' date '27 July 2010' time '10:12:22 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-CamilloBruni.357' message 'refactoring id generation' id 'ccb005cd-8206-46f0-8757-11bcb42464c5' date '27 July 2010' time '11:43:41 am' author 'CamilloBruni' ancestors ((name 'Pinocchio-ToonVerwaest.356' message 'moving instantiation code to layout' id '2d698bf6-2b21-4fd9-bdb2-511602f3559c' date '26 July 2010' time '7:16:05 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.353' message 'ast changes' id '01098398-5a90-4077-8010-f89b7f96ff43' date '26 July 2010' time '9:30:31 am' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ewe.352' message 'fixing inlined C code indentation mistakes' id 'cef27a75-963e-4902-8c0c-e541a910d9cc' date '22 July 2010' time '3:51:33 pm' author 'ewe' ancestors ((name 'Pinocchio-ewe.351' message 'fixing plugin exproter and pprocess to always return from native.' id '1ccc837f-dda5-497a-8656-70f7492f1447' date '22 July 2010' time '3:50:42 pm' author 'ewe' ancestors ((name 'Pinocchio-ewe.350' message 'Merged with David''s socket implementation' id '8be6fe7b-2a1b-4dfa-9a0e-6197cb40df7c' date '22 July 2010' time '3:06:57 pm' author 'ewe' ancestors ((name 'Pinocchio-ewe.349' message 'Merged with David''s socket implementation' id 'cb97ea0b-3037-46bb-90b7-a74fe12f3929' date '22 July 2010' time '3:06:14 pm' author 'ewe' ancestors ((name 'Pinocchio-ewe.348' message 'Merged with David''s socket implementation' id 'd2f0cd3c-9856-4ebb-9760-f109dbc0c076' date '22 July 2010' time '3:05:36 pm' author 'ewe' ancestors ((name 'Pinocchio-ewe.346' message 'adding support for green threads' id 'bff33f1a-d534-4950-8dfe-136e3dc2e01f' date '22 July 2010' time '3:01:27 pm' author 'ewe' ancestors ((name 'Pinocchio-CamilloBruni.345' message 'adding check for assign ast minor formatting' id 'a3813a66-e915-46f2-ab5e-d8f0c66d3914' date '21 July 2010' time '5:00:22 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-CamilloBruni.344' message 'making local variables work again' id '54d3c4d0-e5a1-4d34-b14e-e536809f17f9' date '21 July 2010' time '3:31:50 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-CamilloBruni.343' message 'soem formatting in SCParser' id 'c9aea378-94ec-4d6f-94a7-d22df2b23319' date '21 July 2010' time '1:40:18 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-CamilloBruni.342' message 'Symbols have now decent C identifiers whenever possible' id '398b8106-f907-469f-a4ea-fe113d7533b9' date '21 July 2010' time '1:28:27 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-CamilloBruni.341' message 'adding dynamic variables to the main interpreter' id '6ec1b554-ab89-41ab-afc8-07075e914a7e' date '20 July 2010' time '4:12:54 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-CamilloBruni.340' message 'adding local coverage methods on TestCase to *Pinocchio' id '97c636b1-6175-4a70-b9b3-cb6c8c999d67' date '19 July 2010' time '1:34:34 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-CamilloBruni.339' message 'fixing export issues with TestRunner and related Classes fixed wrong type of the thhreadedcode in the exported C code' id 'bdb46530-a9db-49f0-ae9d-0e56f806da79' date '19 July 2010' time '1:23:17 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-ToonVerwaest.338' message '' id '8feba7e2-77dc-4d32-94f8-2cfcb3373490' date '14 July 2010' time '11:15:21 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-CamilloBruni.337' message 'moving errorHandler accessors on the Excpetion class' id 'd92b5a96-8331-4d15-aa2a-61456ce9fb4d' date '14 July 2010' time '1:08:43 am' author 'CamilloBruni' ancestors ((name 'Pinocchio-ToonVerwaest.336' message 'adding a PThread for future use' id 'bb8c40b0-9052-4add-a023-b42576fa8162' date '12 July 2010' time '9:03:20 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.335' message 'small optimization' id 'c96ab50f-9990-4a94-9cc1-9c365e0d9dba' date '26 June 2010' time '12:39:05 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.334' message 'turn off cachecounters' id '2b19ae60-a408-4cba-9242-63ddf407b9ff' date '26 June 2010' time '12:27:02 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.333' message 'doh :) that was broken' id '2de8a876-4751-4186-87db-ec31dde14f6b' date '26 June 2010' time '12:16:53 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.332' message 'almost more scopedExpression earlier' id 'a5c79cda-9241-4379-8f77-75ca1b9751ae' date '26 June 2010' time '12:08:53 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.331' message 'doh! made a bug:)' id '826a9e4e-cc18-4dea-a72b-148d4bfba48e' date '26 June 2010' time '12:03:03 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.330' message 'forgot to turn of crappy streaming' id '520259f0-ce34-4224-8894-be4c3ce385f7' date '26 June 2010' time '11:57:41 am' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.329' message 'fixed the binaryObjectDescription crap' id '78f67e59-e64f-4b37-838a-7da735418373' date '26 June 2010' time '11:55:56 am' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.328' message '... and goodnight' id '86bf215e-f834-46fa-9b95-60e5bb19fbe4' date '26 June 2010' time '3:01:40 am' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.327' message 'small dependency changes' id '157454a7-7286-49da-aa72-630604fc030e' date '26 June 2010' time '2:48:42 am' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.326' message 'micro-optimizations' id 'e3f09887-a920-4714-95c7-a9e439046a73' date '26 June 2010' time '2:33:59 am' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.325' message 'fixed radix number parsing' id '1f861588-00c1-4af6-b62c-b665ced4c3fd' date '26 June 2010' time '2:27 am' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.324' message 'remove silly compile warning' id '92e44faf-36d2-4714-a390-79fb556af61f' date '26 June 2010' time '2:16:20 am' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.323' message 'more small changes' id 'b14438e7-887e-44d5-8a81-2c98f628adf7' date '26 June 2010' time '2:15:16 am' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.322' message 'now actually also enabled the faster version; and removed all other methods' id 'd033ae9c-73bd-494d-8fdb-79ff79c47211' date '26 June 2010' time '1:13:16 am' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.321' message 'slightly cleaned up version, don''t use fail blocks anymore...' id '57841103-757e-4f65-a755-c4ba13e8609e' date '26 June 2010' time '1:08:35 am' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.320' message 'don''t generate objects anymore unless requested' id '7871d0bb-1fa9-4b22-abdb-b47a299de53b' date '26 June 2010' time '12:33:44 am' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.319' message 'first version of the new PEG' id '9bc1bb10-deb0-400f-a1a7-b61ac6a3ffd8' date '25 June 2010' time '11:28:57 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.318' message 'committing a first version of the new parser' id 'da0031a0-3b24-43df-af20-7539b33b5229' date '25 June 2010' time '11:28:22 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.317' message 'intermediate commit' id '5b1adc21-9157-4fb3-ba87-7641cf4680fb' date '25 June 2010' time '7:07:58 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.316' message 'more optimizations. seems to highlight some bugs in the VM though...' id 'd86dc3fe-95e6-4441-9104-556e9b1046a6' date '24 June 2010' time '5:17:48 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.315' message 'new dep' id '618e2d60-328d-4e44-b42e-619f2b18ccdc' date '24 June 2010' time '4:04 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.314' message 'export optimizations' id '3cc9236a-9970-4208-b053-a83412e9ac5a' date '24 June 2010' time '3:58:19 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-CamilloBruni.313' message 'right deps now?' id 'e9740238-f8ee-4e6d-bca5-b72f0b1abccf' date '24 June 2010' time '12:44:12 am' author 'CamilloBruni' ancestors ((name 'Pinocchio-CamilloBruni.311' message 'adding better bracket index parsing' id 'd46f58bb-1fc2-4173-8d7f-3dd8655afffd' date '23 June 2010' time '9:28:05 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-CamilloBruni.310' message 'dont do string concatenation anymore in CDumpers' id '0f2adef0-249d-442d-9d41-ed0fba9a28b5' date '23 June 2010' time '6:33:25 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-CamilloBruni.309' message 'removing some transcript shows' id '6593ff5d-1e66-4706-82eb-b12d6db5b77f' date '23 June 2010' time '5:28:36 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-CamilloBruni.308' message 'removing boolean ifTrue:ifFalse natives. with almost no speed impact' id 'c9567226-d0fb-4fbe-91f7-7b99cc4e9c6c' date '23 June 2010' time '4:46:43 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-CamilloBruni.307' message 'fixing wrong iftrue iffalse threaded' id 'a294ea3d-70be-409a-98bd-789dcd1fc807' date '22 June 2010' time '3:27:24 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-CamilloBruni.306' message 'romeved some none performance increasing threaded codes (value_ hash) adding ifFalse:ifTrue: switch' id 'f41c8100-8a7c-41ac-9c1c-7904108e1c0a' date '22 June 2010' time '11:51:50 am' author 'CamilloBruni' ancestors ((name 'Pinocchio-CamilloBruni.305' message 'adding ?! as possible selector characters' id '5ce77d58-06fc-417e-aadc-65bcbd45fb76' date '19 June 2010' time '1:06:44 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-CamilloBruni.304' message 'adding braket syntax for at:put:' id '2d78fa61-d701-4760-bca5-839390fb51f5' date '18 June 2010' time '10:01:43 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-ToonVerwaest.303' message 'ifTrue: / ifFalse: is so difficult' id 'c4fb7432-ada2-491b-b0c0-06e3d36ea238' date '16 June 2010' time '4:45:46 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-CamilloBruni.302' message 'adding block_return' id 'c16062ab-f183-4472-8dbf-a032be948f6c' date '16 June 2010' time '2:34:50 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-ToonVerwaest.301' message 'adding method_returns ' id '0de55c65-69a8-43b0-9597-9f002b354589' date '16 June 2010' time '11:48:32 am' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.300' message 'disable mceval' id '3a07a0f0-25ef-4833-925e-1455a8d77f2d' date '14 June 2010' time '4:26:09 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-CamilloBruni.299' message 'adding MC save button' id '20748682-75ef-471c-9cbd-84386d9b5e54' date '14 June 2010' time '2:44:15 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-ToonVerwaest.298' message 'disable value' id '5b0ae2c9-7c71-470c-978b-aa05f41d9eef' date '14 June 2010' time '2:42:12 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-CamilloBruni.297' message 'fixing some tests adding send_value / send_hash bytecodes' id '59c6a9bb-3852-4875-8607-4a3ada0c3851' date '14 June 2010' time '12:05:44 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-CamilloBruni.290' message 'minor cleanup: created isUnscoped on PBlock' id '92adb7ea-953d-4a44-bd62-39aab086ceb5' date '11 June 2010' time '10:07:38 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-ToonVerwaest.289' message 'adding support for ifTrue:ifFalse:' id '8b0ffbfe-8c71-4664-85c7-c14160b47310' date '10 June 2010' time '6:36:36 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.288' message 'remove empty blocks (var indices are updated to take it into account.)' id '868c5099-be94-4837-9107-eb3a018b300f' date '10 June 2010' time '5:58:08 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.287' message 'only compile ifTrue in the ideal (common) case' id 'e018e511-73be-45ae-990b-aae3c87827d5' date '10 June 2010' time '4:53:31 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.286' message 'fix bug with comparison between number and symbol.' id 'e1a029a7-1800-480f-9439-e8e89fa1c70c' date '10 June 2010' time '4:35:28 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-CamilloBruni.285' message 'added ifTrue: check branch for testing bool branching threaded code' id 'ad17afd4-bf81-4fb0-b1ed-88028d6ae62c' date '10 June 2010' time '2:48:14 am' author 'CamilloBruni' ancestors ((name 'Pinocchio-CamilloBruni.284' message 'making threaded evaluation working:wq ' id '33201298-2471-41f8-b36c-0ab2c75d0c31' date '10 June 2010' time '1:27:07 am' author 'CamilloBruni' ancestors ((name 'Pinocchio-CamilloBruni.283' message 'adding some hooks to inspect the exported threaded code' id '4c4a3749-241f-4d85-a365-3811c3391c44' date '9 June 2010' time '11:18:59 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-CamilloBruni.282' message 'adding FunctionPointer type for ThreadedCompiler' id '13db6683-5cb9-49be-a40c-141939ef427f' date '9 June 2010' time '10:29:29 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-CamilloBruni.281' message 'merging' id 'a588c658-9982-4955-adec-09ac3f236017' date '9 June 2010' time '5:48:08 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-CamilloBruni.280' message 'removing some more package prefixes. typing the C output more' id '69ad3339-e1e2-4448-bf3e-17414b8dd80c' date '9 June 2010' time '4:53:28 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-CamilloBruni.279' message 'adding more tests for assignments and returns' id '532d9d12-6999-41f1-ae4a-63bb4880ec16' date '9 June 2010' time '3:17:50 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-CamilloBruni.278' message 'adding new tests' id 'a5ccd6ff-7ef3-47b9-b282-66e0b585837c' date '9 June 2010' time '2:58:53 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-ToonVerwaest.277' message 'should not pop between send arguments :)' id '903524b1-d831-4fba-b2dc-41179cba2b17' date '9 June 2010' time '2:51:35 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.276' message 'popping between expressions in a method' id '8c539783-cce3-4828-964a-e17c3e5e4f42' date '9 June 2010' time '2:39:15 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.275' message 'more changes' id 'cf03c7aa-f568-43e7-92bd-11e488ab5949' date '9 June 2010' time '2:09:16 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.274' message 'insert return instructions' id 'b4f8675f-e10b-4cac-9f6a-12b830533d71' date '9 June 2010' time '10:05:18 am' author 'ToonVerwaest' ancestors ((name 'Pinocchio-CamilloBruni.273' message 'making the threading compiler work on pinocchio side' id 'ff711596-38e9-4b12-8499-cb984bf90a99' date '8 June 2010' time '8:14:11 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-ToonVerwaest.272' message 'small changes' id 'd4a3216b-55fc-41e2-a73b-dba61f559efe' date '8 June 2010' time '5:52:28 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-CamilloBruni.271' message 'removing ThreadedMethod' id 'b5324370-6df9-4804-a82d-04221f1af06f' date '8 June 2010' time '4:45:39 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-CamilloBruni.270' message 'resetting all the UID counters before exporting' id '33b32234-a3a8-4146-a788-5114a9f5c2cc' date '8 June 2010' time '3:12:04 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-CamilloBruni.269' message 'adding simple tests for threaded compiler' id '9d7df425-7ecf-4b7d-80f6-a7971af113f1' date '8 June 2010' time '2:37:05 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-CamilloBruni.268' message 'removed package prefixes in the CDumper starting threaded compiler' id '2e170c1b-3182-4ef6-863d-f38e11db3567' date '8 June 2010' time '1:58:24 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-CamilloBruni.267' message 'resolving full package name properly for the completion list export' id '53e7fae7-08aa-4525-94f7-18843b5a9655' date '3 June 2010' time '10:36:57 am' author 'CamilloBruni' ancestors ((name 'Pinocchio-CamilloBruni.266' message 'generating an autocompletion file for rlwrap' id '4a67465e-094d-4d2f-b912-ee082b60b38e' date '3 June 2010' time '10:31:53 am' author 'CamilloBruni' ancestors ((name 'Pinocchio-ToonVerwaest.265' message 'starting to work on threaded code' id '4bfe96f8-b535-4d6a-aa1f-99001d16e649' date '1 June 2010' time '2:58:58 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-CamilloBruni.264' message 'addding new ThreadedMethod' id '459f025f-0338-446c-9ac5-328004c14cf8' date '1 June 2010' time '1:18:50 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-CamilloBruni.263' message 'working version of the terminal coloring' id '9a934c01-caa3-40ce-810f-2c5b6bb170f8' date '1 June 2010' time '12:11:51 am' author 'CamilloBruni' ancestors ((name 'Pinocchio-CamilloBruni.262' message 'adding terminal coloring' id 'a56ed881-1722-4206-9dbe-7dc79e79174c' date '31 May 2010' time '11:54:23 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-CamilloBruni.261' message 'adding first version of cleaned up testrunner' id '3acf1868-34a4-4999-a89a-fad837a38a04' date '31 May 2010' time '4:36 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-CamilloBruni.260' message 'starting testrunner implementation' id '82fb9c17-7286-43da-8b2f-2f9f4a66e67b' date '27 May 2010' time '12:02:50 am' author 'CamilloBruni' ancestors ((name 'Pinocchio-ToonVerwaest.259' message 'make float class external' id '615045c4-5d5f-441c-96aa-a3f411ee7e8d' date '26 May 2010' time '11:39:31 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-DavidGurtner.258' message 'fix for exporting non pinocchio packages.' id 'b9fad064-5bf5-4561-951f-ffcf34549abe' date '26 May 2010' time '5:18:58 pm' author 'DavidGurtner' ancestors ((name 'Pinocchio-ToonVerwaest.257' message 'removing stupid function calls' id '54514067-850f-4292-b529-5db0ef2e0f46' date '25 May 2010' time '10:59:26 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.256' message '2^8. more external instead of internal.' id 'fe95e69e-2b8f-4b90-a43a-916a27f72d89' date '25 May 2010' time '10:44:53 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.255' message 'more cleanup' id '58c85045-b0aa-472e-b4a0-957355c0b774' date '25 May 2010' time '8:30:43 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.254' message 'more magical classes' id '51293fc1-3634-40e2-bde2-ad40710cee35' date '25 May 2010' time '8:10:55 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.253' message 'making more classes be exported rather than manually created' id 'ddb2525a-ab89-4304-82db-cd0733248bfe' date '25 May 2010' time '8:04:37 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.252' message 'some more cleanup.' id '5fa43ccb-f174-4be0-870c-0e35818b35b0' date '21 May 2010' time '6:58:12 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.251' message 'using our own dogfood is more tasty ;)' id 'c8f579a1-db88-4c1a-ac0a-2eb5bea51921' date '21 May 2010' time '6:41:54 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.250' message 'small cleanup' id '4d3ea05d-2d76-4759-9c8c-ec6b92ebd433' date '21 May 2010' time '6:25:57 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.249' message 'fixing exporters to all use PharoExporter rather than the test exporter.' id '0fd64f8b-cbfd-40a7-87d6-b7ac6425d7fc' date '21 May 2010' time '6:06:10 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.248' message 'nice dictionary and set inspection' id 'c3603947-fe48-4f7d-924f-a4e212a658fc' date '21 May 2010' time '5:59:18 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.247' message 'fixing exporting of globals; don''t overwrite them later on ...' id '88210393-518b-43b8-a39e-16df545e7c09' date '21 May 2010' time '5:25:22 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.246' message 'cleanup' id 'd2e07d10-5965-474a-8ebe-007dde4aa041' date '20 May 2010' time '8:39:36 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.245' message 'removing as many accessor methods as possible; trying to see what the real API is here...' id '06edd2ba-d340-4a27-82b2-dd22c80de3c5' date '20 May 2010' time '8:29:43 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.244' message 'more cleanup' id '176885bc-b7b9-4f2b-b000-9c8ea5c1c56f' date '20 May 2010' time '8:20:07 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.243' message 'more cleanup work; lets disable those halts for now.' id 'eb400631-84ed-43c8-aa26-fea12c02dfee' date '20 May 2010' time '8:08:58 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.242' message 'more refactoring, actually streaming rather than appending strings...' id 'c027483d-4b62-4c9c-8a5a-7d473a5f7546' date '20 May 2010' time '6:33:16 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.241' message 'more cleanup work' id '4908238f-2a42-4849-bb9d-a552ca77df9f' date '20 May 2010' time '6:09:56 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.240' message 'lots of intermediate upgrades to exporting. removed the test exporter and cleaned up the main exporting system' id 'cf5ba95b-3e46-4989-9189-76e10728a637' date '20 May 2010' time '5:24:17 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.239' message 'extern in lib.h! some small fixes. need to figure out why slot objects are duplicated!' id '76af73c9-962a-4529-8808-3bca10340b3a' date '20 May 2010' time '3:52:44 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-CamilloBruni.238' message 'changed gofer from load to update, see if that helps' id 'c1b05ca4-3a80-4d4d-a898-1f69d3076f6a' date '20 May 2010' time '1:50:49 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-CamilloBruni.236' message 'fixed wrongly named methods for updating' id '567fb54c-62d8-4cd5-89de-2550706eb0c9' date '20 May 2010' time '1:27:55 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-ToonVerwaest.235' message 'adding self and info to the list of cool classes.' id '447d3c7f-864b-41db-b384-66fbaf41275e' date '20 May 2010' time '1:10:40 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.234' message 'pharo support for lots of code lost in C' id '9dcce168-0370-4cac-b277-cf6b6404d5ef' date '20 May 2010' time '12:56:48 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.233' message 'lots of work on exporting more metadata rather than relying on what''s in the C code. now all meta-layouts are also shared (except Behavior/Class don''t yet take their instvars from Object class... Maybe do this in C?' id '6c4bc4fd-92cd-4840-a163-3f356ff534d8' date '20 May 2010' time '2:43:03 am' author 'ToonVerwaest' ancestors ((name 'Pinocchio-CamilloBruni.232' message 'adding benchmark facilities' id 'a2c5c771-627e-4b10-868c-6f259748a7fe' date '19 May 2010' time '6:40:27 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-ToonVerwaest.231' message 'parse comments too' id '88373dc1-cd64-4f20-9bc9-c099cc1745c9' date '18 May 2010' time '3:24:25 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.230' message 'ensure that parsing fails when there is a bug in the code somewhere...' id '2547035f-dcc2-49ed-bcbf-cfe48132d540' date '18 May 2010' time '3:19:45 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.229' message 'save the VERSION file; used for packaging.' id '624420e3-4195-48e1-b277-87e4ec90a245' date '18 May 2010' time '2:59:03 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.227' message 'fixing slot code' id '18e1e3d1-4e02-4023-9002-fae8fc0de3cf' date '18 May 2010' time '8:49:43 am' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.226' message 'more work on DSL' id 'f65e26f8-5c83-44f4-9b46-62e89b68e7bc' date '17 May 2010' time '10:41:10 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.225' message 'more work towards a first dsl' id 'bbdf111f-00ad-4233-a473-ca010c1df0dd' date '17 May 2010' time '7:48:56 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.224' message 'reenabling the primitive tags.' id '96d6cee3-8d56-48c3-9370-bb5d26c7f6cb' date '17 May 2010' time '5:52:25 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.223' message 'trying to fix the bug of erwann' id '345fbb01-e70d-4553-85e5-8895a3759e6f' date '17 May 2010' time '4:19:04 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-CamilloBruni.222' message 'changes??' id '65b6f117-a5d1-4a8c-bfcd-fa7caf4800a1' date '17 May 2010' time '4:04:20 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-CamilloBrun.221' message 'added default fib implementation on Number' id '92179d2c-8072-4770-9b5f-8ded16c30816' date '17 May 2010' time '1:37:37 pm' author 'CamilloBrun' ancestors ((name 'Pinocchio-CamilloBrun.220' message 'adding output to automated export' id 'ebb89e0a-be3c-4147-9918-dad08aa30619' date '17 May 2010' time '1:02:18 pm' author 'CamilloBrun' ancestors ((name 'Pinocchio-CamilloBruni.219' message 'adding auto export method' id '750f909d-c8ee-4e9e-ba7e-2dd82701b37b' date '17 May 2010' time '11:42:42 am' author 'CamilloBruni' ancestors ((name 'Pinocchio-CamilloBruni.218' message 'preparing for automated export' id 'a0991b95-65fc-44d2-b3e5-ecb71873b9e1' date '17 May 2010' time '11:36:29 am' author 'CamilloBruni' ancestors ((name 'Pinocchio-CamilloBruni.217' message 'adding some more shortcuts' id '9017d99b-81c3-4c9c-8c17-da6536fd0927' date '17 May 2010' time '10:58:08 am' author 'CamilloBruni' ancestors ((name 'Pinocchio-DavidGurtner.216' message 'replaced = on PPexMatcher with be: as = could return nil, which lead to issues. A bunch of tests might need fixing now.' id 'e854c8b7-4f2a-40a2-af7e-bc03c643fb82' date '13 May 2010' time '3:02:30 pm' author 'DavidGurtner' ancestors ((name 'Pinocchio-ToonVerwaest.215' message 'more natives' id '37f35dbc-db96-41cd-9094-de933beccafc' date '11 May 2010' time '8:15:40 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.214' message 'native booleans make me fastly happy' id '6518253b-b29a-4f86-ab9a-c29a0ba0ecac' date '11 May 2010' time '8:11:49 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.213' message 'small fixes and work on a language skin for smalltalk classes... should think more about it though' id 'c8b874de-d998-4da9-a115-6842436b7ce0' date '11 May 2010' time '5:15:33 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.212' message 'polymorphic inline caches.' id '3779ec2a-26a3-46df-8779-e6c3dfcb960b' date '10 May 2010' time '10:38:01 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-CamilloBruni.211' message 'Toon added auto inspect in the main Interpreter' id '852e3a74-2238-41f6-8ca7-7ea699d7bb21' date '10 May 2010' time '3:32:05 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-ToonVerwaest.210' message 'adding undefined classreference exception' id '5ea14a60-ac5a-4061-9a33-0c9fe44174e6' date '8 May 2010' time '4:04:56 am' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.209' message 'more small cleanups.' id '6614a584-b010-4d81-8264-9cce46eb54e2' date '8 May 2010' time '3:56:50 am' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.208' message 'always start at the rootpackage to ensure class references. actually return Slots from the MainInterpreter' id '4bc223ba-ed6a-47f7-92fa-b3cda5413d95' date '8 May 2010' time '3:03:25 am' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.207' message 'lots of refactorings to ensure it becomes easier in the end to make some sort of useful DSL for creating classes...' id '2c842789-fd57-4399-9fa6-35ed664e7fe3' date '8 May 2010' time '2:42:19 am' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.206' message 'fixing a bug in package exporting. decluttering the mess a little bit.' id '11065afa-e86f-4efa-917e-bc36b4bba23b' date '6 May 2010' time '8:36 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.205' message 'inheriting package names from pharo' id '6fe107d8-70d3-48c5-98e0-0ff2b06357ca' date '6 May 2010' time '4:38:53 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-DavidGurtner.204' message 'hierarchy tests' id 'd076798f-67c3-4f5d-8720-6639271245d4' date '6 May 2010' time '2:42:12 pm' author 'DavidGurtner' ancestors ((name 'Pinocchio-DavidGurtner.203' message 'added first bunch of hierarchy tests' id '5204df2a-3d6f-4cbe-b48e-6109110db571' date '5 May 2010' time '4:48:05 pm' author 'DavidGurtner' ancestors ((name 'Pinocchio-ToonVerwaest.202' message 'makes me to press enter. added first basic untested error handler' id '358696d0-adc5-4483-9325-863c4e9f1746' date '5 May 2010' time '4:33:33 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-CamilloBruni.201' message 'basic float parsing' id '17ba2073-0e5b-4beb-8035-3911dde19073' date '4 May 2010' time '5:25:28 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-CamilloBruni.200' message 'it committed some new test for classa name and stuff' id 'fd596755-eeac-4a49-8f8e-fbe92e74ba25' date '4 May 2010' time '4:07:47 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-CamilloBruni.199' message 'renaming InstVar to Slot' id 'd2aba5e5-4517-4eb3-acf3-08ec418e730c' date '4 May 2010' time '12:07:45 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-CamilloBruni.198' message 'changed InstVar to Slot' id '82b44c21-b219-408a-8a8e-02740b38c8b5' date '4 May 2010' time '12:06:47 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-CamilloBruni.197' message 'renaming instVar to Slot' id '85ee990f-18e8-41cd-b3f5-8f7e767710a2' date '4 May 2010' time '12:05:33 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-DavidGurtner.196' message 'making the debugger examples to be coherent with the implementation' id 'dde823a7-d509-4767-8611-db5a47c77ad4' date '28 April 2010' time '2:35:28 pm' author 'DavidGurtner' ancestors ((name 'Pinocchio-DavidGurtner.195' message 'rewrote parallel debugger to be the same as in the paper' id '0004d6e5-5f10-4659-9720-b381f8a639e5' date '26 April 2010' time '4:26:26 pm' author 'DavidGurtner' ancestors ((name 'Pinocchio-DavidGurtner.194' message 'simple message tally' id '26eca8fb-c17b-4673-b6ea-530a4c2dae29' date '21 April 2010' time '5:35:13 pm' author 'DavidGurtner' ancestors ((name 'Pinocchio-DavidGurtner.193' message 'hopefully finally fixing the return of a returning block in step over of PDebugger' id '3cc207a0-eed1-4922-b3b2-be78817b3ccb' date '12 April 2010' time '5:37:59 pm' author 'DavidGurtner' ancestors ((name 'Pinocchio-ToonVerwaest.192' message 'adding overwrite test.' id '1610bde0-23c7-40e0-9607-64e678362e75' date '6 April 2010' time '7:01:41 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.191' message 'renamed test' id '93aa129b-0b39-4419-a035-ecae92783ca8' date '6 April 2010' time '6:51:07 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.190' message 'adding field write test' id '89240c73-235a-44d7-b1e4-1d81abc694a3' date '6 April 2010' time '6:50:38 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.189' message 'adding NativeMethodContext for alias debugging.' id '84eb5507-b005-4a0a-8f15-92de528928c7' date '6 April 2010' time '6:38:06 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.188' message 'committing first version of AliasInterpreter. Also extending the inspector to support arrays better.' id '018d5292-4bdc-4d27-80ab-2a3da76f02ac' date '6 April 2010' time '6:20:27 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.187' message 'work on the alias debugger; thus refining the mceval to make it work easier' id 'dec50f1d-bc5f-442c-9758-1cbea06358a7' date '6 April 2010' time '12:22:08 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-CamilloBruni.186' message 'fixing indentation of exported source code' id 'c77c545c-40d6-4fe8-9be1-cf804a2b53a7' date '6 April 2010' time '12:24:37 am' author 'CamilloBruni' ancestors ((name 'Pinocchio-CamilloBruni.185' message 'added support for inst vars in the exported code overwrote #line in the exported source code such that the compiler warnings will point to the smalltalk source code location' id '800736e7-3c50-446b-b08d-e870e79e7c49' date '5 April 2010' time '11:53:29 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-CamilloBruni.184' message 'merging changes of PProcess renamed primitiveAnnotations added inplace C code export' id '7f59b140-0908-40da-9835-50cb2df6228e' date '5 April 2010' time '4:32:18 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-ToonVerwaest.183' message 'using lookupSelector:in: primitive from Interpreter plugin' id '499e1e14-a409-40b3-a477-0cde36749de7' date '3 April 2010' time '2:53:13 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-inurBollimaC.182' message 'basic implementation of pprocess' id '4f1ebdfa-05c3-4284-b819-02618a7f58b7' date '2 April 2010' time '5:43:59 pm' author 'inurBollimaC' ancestors ((name 'Pinocchio-DavidGurtner.181' message 'added PContinueTest' id '98e0fa37-d7f8-49c6-aa3f-9bc139008715' date '1 April 2010' time '5:52:30 pm' author 'DavidGurtner' ancestors ((name 'Pinocchio-ToonVerwaest.180' message 'forgot to export the printString method ...' id '465c3bcc-54e3-4790-a879-146b9735902f' date '1 April 2010' time '5:47:35 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.179' message 'more work on parallel debugger; better output now ' id 'd97ff92b-0da8-489c-9664-12619a5e72f2' date '1 April 2010' time '5:01:16 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.178' message 'fixed the paralleldebugger.' id '653b92c0-f755-4102-81bb-68c9e683798c' date '1 April 2010' time '4:01:06 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.177' message 'adding a continuation test.' id '1e329ddb-d4a0-4555-a99e-d56e743f81b7' date '1 April 2010' time '12:15:44 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.176' message 'removed pc from Context objects. contexts are now only environments. This should help for continuations.' id '76a0f5d5-c67f-4f97-80ec-b228afa8fb44' date '31 March 2010' time '5:23:41 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.175' message 'making the inspector more flexible' id '79355cfb-ad13-450d-ad29-b67782288241' date '31 March 2010' time '1:55:36 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-CamilloBruni.174' message 'working on pushing natives through the towers of interpreters' id '3538792a-94a7-474c-9409-eac03b501a80' date '30 March 2010' time '5:37:26 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-ToonVerwaest.173' message 'working on inline caches' id '861a8a79-6aa6-4433-a7a7-c102c1c38886' date '30 March 2010' time '5:00:55 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-CamilloBruni.172' message 'fixing some broken tests' id '63e7074e-61a7-4bfa-bd0e-66346b923cce' date '30 March 2010' time '3:50:23 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-ToonVerwaest.171' message 'more work on supporting towers of interpreters' id 'eeec66ec-80b8-4496-86bf-9a97722dba4e' date '30 March 2010' time '2:47:07 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-CamilloBruni.170' message 'Toon added code for A1 interpreter inverse message bubbling' id '67a987c4-88e7-4ad3-b8ef-8cf332895b54' date '29 March 2010' time '5:33:30 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-CamilloBruni.169' message 'added PLink' id '29b7736b-cecd-4af7-84c9-b212ef3bffaf' date '29 March 2010' time '5:08:48 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-ToonVerwaest.168' message 'bad guru! very bad gury! making me search long for the bug. so if you get random jumps with continue and then fail on totally random position; check if there''s no method like: bla bla ^ [ bla. ^ bla] Don''t return returning blocks! That doesn''t work! Now onto making perform:withArguments reflective' id '5846e0f5-f3f3-4e2b-9d49-dc0c8bf18bea' date '27 March 2010' time '12:03:06 am' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.167' message 'more work.... still not getting the continuation bug...' id '9bccee65-f2c2-45b4-bda2-bd4ebc18e670' date '26 March 2010' time '11:48:39 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.166' message 'fixed a bug! so annoying' id '3550606d-0805-4669-8312-86ac60bd8421' date '26 March 2010' time '10:45:57 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.165' message 'merged with guru''s code; started adding mceval support for reflective methods.' id 'b7e48a9c-af16-4bd0-89d0-7452de16b59a' date '26 March 2010' time '8:14:46 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.164' message 'lots of work on ReflectionMethods' id 'e1ccbacc-a5c9-445f-811e-eecd6615bb07' date '26 March 2010' time '7:38:45 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.163' message 'adding reflectionmethods' id '0a9d1999-c25e-4e5e-872e-b45b82bb7c29' date '26 March 2010' time '4:18:10 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.162' message 'more meta-interpreter work' id '05d57df1-cc95-46dd-a2e1-efd173be1d7f' date '25 March 2010' time '6:32:22 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.161' message 'move actual instvariable assignment to the instvar objects themselves' id '781f94d5-e64b-492e-ab55-58ff806d813f' date '25 March 2010' time '5:01:27 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.160' message 'propagating the changes to the mceval' id 'aa2f85c7-b833-4517-a9b0-935c8ba6442b' date '25 March 2010' time '4:55:36 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.159' message 'Work on mceval + debugger + setting host of methodclosures correctly' id 'd2bdbfc6-f449-4266-b5b8-916499a4439c' date '25 March 2010' time '4:31:32 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.158' message 'adding debugger support for stepping + over' id 'bac88efc-3f4e-4c24-af97-8e2c63432762' date '25 March 2010' time '11:27:53 am' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.157' message 'more work on the stepping debugger' id 'dec1b41e-d2d6-4d74-9b44-9b8d83b155a7' date '25 March 2010' time '1:03:33 am' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.156' message 'more work on the debugger. don''t overwrite Send but rather send:...:' id 'b8f03fba-17dd-485c-afa0-87d31399055f' date '25 March 2010' time '12:56:26 am' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.155' message 'fixed the debug-interpreter' id 'a9158fb9-7be8-4552-8f49-a1cd6fb7a778' date '24 March 2010' time '11:23:14 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-CamilloBruni.154' message 'adding debugger' id '3abfda6a-431b-4214-838e-f0692a26ed88' date '24 March 2010' time '7:01:12 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-CamilloBruni.153' message 'moving interpreter into separate subpackage making sure testcases inherit testmethods in the exported c code' id '369fceff-f688-421b-a8e8-c50a0f42d37a' date '24 March 2010' time '5:23:39 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-DavidGurtner.152' message 'adding tests for meta circular Interpreter' id '43ad2bc4-e6b6-4f14-8652-5062cca1e7f1' date '24 March 2010' time '5:21:03 pm' author 'DavidGurtner' ancestors ((name 'Pinocchio-ToonVerwaest.151' message 'fixed continuation mceval code. easier than I thought :)' id '439f01f5-7e2f-472a-a4b2-49dbabe6ec34' date '24 March 2010' time '1:33:52 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.150' message 'working on mceval Continue support' id '25ab6403-87a3-4f76-8fcb-b5654f17a8c2' date '24 March 2010' time '1:17:28 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-DavidGurtner.149' message 'fixed MCeval super and send code; made testSuper work.' id '5a638f46-fcba-4c27-b7ad-2cabaae78c78' date '23 March 2010' time '7:07:47 pm' author 'DavidGurtner' ancestors ((name 'Pinocchio-DavidGurtner.148' message 'renamed initialize on PInterpreter to pinitialize, because of monticello. Some work on PInterpreter, needs tests!' id '4fb2ac5e-1195-4eac-b174-e9e23ceb3b09' date '23 March 2010' time '6:35:46 pm' author 'DavidGurtner' ancestors ((name 'Pinocchio-DavidGurtner.147' message 'renamed initialize to pinitialize because of monticello. some work on Pinterpreter, needs tests!' id 'eaf83e15-ffc3-460a-8c9e-73099fc49bd4' date '23 March 2010' time '6:33:47 pm' author 'DavidGurtner' ancestors ((name 'Pinocchio-ToonVerwaest.146' message 'fixed loading of plugins. now you have to specify the identifier in the smalltalk code rather than getting it from the plugin itself. init_plugin before doing call_initialize on the exported classes; but after making the classes (since we have to store _NATIVES_ into the PluginPluginClass' id 'e9a772ab-133e-426b-b8da-77dc8a9ed309' date '23 March 2010' time '6:17:05 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-CamilloBruni.145' message 'added plugin' id '8d300bbf-7e4d-42b9-8c33-2669c771d101' date '23 March 2010' time '4:56:48 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-ToonVerwaest.144' message 'added tests (and fixed) PAssign for PVariable' id 'f468702c-901c-4314-822a-8f33dc2485ec' date '23 March 2010' time '12:42:06 am' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.143' message 'test variables in blockcontexts + methodcontexts' id 'f26bd2f3-1cd5-47b6-a3fe-9897e9489b5a' date '23 March 2010' time '12:28:41 am' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.142' message 'PVariable tested with just method-context' id 'eac98567-da3a-41fd-9725-fc90e03c8166' date '23 March 2010' time '12:17:38 am' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.141' message 'fixed the code so that the closure evaluation works' id '6014f572-f1e0-481e-b27c-63c80d63e264' date '22 March 2010' time '11:43:52 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-CamilloBruni.140' message 'renaming and cleanup of test methods names' id 'cc6c0201-f1a4-4c26-aee0-56a4d12772d1' date '22 March 2010' time '3:15:08 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-CamilloBruni.139' message 'made dict/set objects inherit from each other fixed tests to be working' id 'b6f99e3f-25c2-4fbe-a6bc-0f68c267c324' date '22 March 2010' time '3:13:33 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-ToonVerwaest.138' message 'work on mc-blockclosures' id '7003798b-d2ce-496d-b1c6-67effd4fcafc' date '21 March 2010' time '11:30:32 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.137' message 'adding interpreter tests. testConstant and testSend seem to work (very basic tests; but at least already uses the invokeNative:on:class:message: native.' id '68c943f3-40d3-4f90-8a43-819d0a318a77' date '21 March 2010' time '9:14:46 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.136' message 'work on mceval; removed Callec in favor of Continue (should maybe rename later again; but was class/instance side split into 2 classes; that doesn''t make sense).' id '73e93bfb-489b-4b8d-9f6c-6f48e07d3499' date '18 March 2010' time '2:28:23 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.135' message 'fixed addition bug on PDictionary; only increase size when the element wasn''t present yet.' id 'fe302f52-306a-46ce-b6ed-b90cda0f14de' date '18 March 2010' time '10:46:19 am' author 'ToonVerwaest' ancestors ((name 'Pinocchio-inurBollimaC.134' message 'added proper command for Pinocchio and PEG restricted Browser to the main MENU' id 'f5203823-8411-4bab-962a-951f25917552' date '17 March 2010' time '8:06:36 pm' author 'inurBollimaC' ancestors ((name 'Pinocchio-CamilloBruni.133' message 'comitting again maybe I missed something' id '15b12e92-aacd-49f8-8639-dc0cd64bf7ed' date '17 March 2010' time '6:34:09 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-CamilloBruni.132' message 'adding untested PIdentitySet and PIdentityDict' id '7e1cf4ce-af03-4129-8db5-79cf6b0658af' date '17 March 2010' time '6:23:24 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-CamilloBruni.131' message 'fixing tests. all tests run now in pinocchio' id '33d88f74-1091-4ea1-9222-a993fb110847' date '17 March 2010' time '6:12:05 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-CamilloBruni.130' message 'replaced all Dictionary with PDictionary and Set with PSet' id 'fe3e8afe-9266-4381-92d5-84429a6b39e5' date '17 March 2010' time '4:38:20 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-CamilloBruni.129' message 'savin!' id '421dc1eb-a22a-4f02-99c1-83d8e9e6e946' date '17 March 2010' time '2:53:17 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-CamilloBruni.128' message 'asdfasdf' id '806eab01-f93f-4f5e-9f17-db679e214a5e' date '17 March 2010' time '2:49:35 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-CamilloBruni.127' message 'empty log message' id 'f3930476-4974-4df8-a9bf-39734f294d08' date '17 March 2010' time '2:48:40 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-CamilloBruni.126' message 'empty log message' id '788d588e-895f-4218-aec9-1dfa146c9db3' date '17 March 2010' time '2:48:17 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-CamilloBruni.125' message 'empty log message' id '5a964b23-527d-4d46-911f-3687215ef03c' date '17 March 2010' time '2:46:47 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-CamilloBruni.124' message 'empty log message' id '91378f8c-5153-470f-a8d7-083a27939824' date '17 March 2010' time '2:45:23 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-CamilloBruni.123' message 'coomit bastard!' id '9fe8ccd1-261f-4d7b-b133-c5bf1cc6745d' date '17 March 2010' time '2:45:01 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-CamilloBruni.122' message 'added new: to PSet' id '3dc86d81-dd46-4cee-bd2b-945edf3b5e9b' date '17 March 2010' time '2:44:14 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-CamilloBruni.121' message 'adding new: to PSet' id '5d85f959-faa7-4dcc-adda-f932a0acbc12' date '17 March 2010' time '2:43:28 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-ToonVerwaest.120' message 'another try at removing crap' id '07858371-ca7b-42fc-8c49-b0fb3b3cd4f7' date '16 March 2010' time '8:40:53 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-CamilloBruni.119' message 'comitting again' id '3f94b64f-0cfd-485e-9d8a-11948e8ac056' date '16 March 2010' time '4:55:08 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-inurBollimaC.118' message 'fixing some Set and Dict stuff' id 'eba63349-f631-4ef0-9913-23c6de0d173d' date '16 March 2010' time '3:10:31 pm' author 'inurBollimaC' ancestors ((name 'Pinocchio-inurBollimaC.117' message 'adding basic new native for Set' id 'e6f1fe4b-4626-43d2-b96c-61e505f9762e' date '15 March 2010' time '3:47:24 pm' author 'inurBollimaC' ancestors ((name 'Pinocchio-inurBollimaC.116' message 'added missing pequals on String' id 'cabb10bb-9d75-475d-b061-96c2444c3049' date '15 March 2010' time '2:40:05 pm' author 'inurBollimaC' ancestors ((name 'Pinocchio-inurBollimaC.115' message 'added error printout for failing assertions with should' id '51602d70-f5df-45cf-99e0-3785b19d0476' date '15 March 2010' time '2:26:02 pm' author 'inurBollimaC' ancestors ((name 'Pinocchio-ToonVerwaest.114' message 'small changes; inlining makes it slightly faster' id 'fe33ab15-039d-4f5c-9fd4-fe9320083062' date '15 March 2010' time '2:09:52 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.113' message 'don''t throw away buckets' id '0c01801a-ca23-4fd3-a5f9-fa1827bbe159' date '15 March 2010' time '1:42:35 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-inurBollimaC.112' message 'avialble method sources are added to C code' id '98ce2284-1ff8-4410-a7c0-d8d2c50b0a3e' date '15 March 2010' time '1:28:26 pm' author 'inurBollimaC' ancestors ((name 'Pinocchio-ToonVerwaest.111' message 'bit nicer version; now ratio is always stored as smallint.' id 'c5c84d68-2626-4080-b747-6c9975954e32' date '15 March 2010' time '12:02:31 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.110' message '// is waaaaaaaaaaaaaaaaaaaaaaaay faster than /. more or less doubles the speed of addition :)' id '8311c2e4-de49-4bc8-8a49-1fe6ae5be49f' date '15 March 2010' time '12:00:43 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.109' message 'removing crap?' id 'dbc9d904-7453-494d-bb24-154165336efb' date '15 March 2010' time '11:54:59 am' author 'ToonVerwaest' ancestors ((name 'Pinocchio-inurBollimaC.108' message 'making includesKey much faster on PDict. Still we lack when growing the dict' id '423315a6-f899-438c-a0ae-dec1ddc10980' date '14 March 2010' time '8:35:40 am' author 'inurBollimaC' ancestors ((name 'Pinocchio-inurBollimaC.107' message 'merged with toon' id '89386fc1-d77f-4427-a1c4-4c534855a480' date '13 March 2010' time '11:13:51 pm' author 'inurBollimaC' ancestors ((name 'Pinocchio-inurBollimaC.106' message 'adding nice dict tests' id '80a2f181-4324-493b-95d3-2bd262809b0c' date '13 March 2010' time '11:13:05 pm' author 'inurBollimaC' ancestors ((name 'Pinocchio-ToonVerwaest.105' message 'cleaning up the dictionary implementation. reading is now more or less as fast as normal dictionaries for many elements (didn''t check small dictionaries yet; there we should be faster). adding is still a bit slow though... should check grow-function.' id 'e24ecf6f-130f-4efb-9379-79cc7cf575a4' date '13 March 2010' time '6:22:26 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.104' message 'moved all natives to named primitives' id '811d7591-eecd-42de-a093-8f0e8487e8fa' date '12 March 2010' time '5:19:26 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.103' message 'intermediate commit; starting to move all methods to the new named primitives; and thus providing the API within pharo' id '47d6e6d8-9339-4cfe-980b-d44bb931b16f' date '12 March 2010' time '4:06:42 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-DavidGurtner.102' message 'fixed annotations to be arrayed as in C. for named primitives.' id '28f5105b-564b-4655-a498-2de5d55eb53a' date '11 March 2010' time '7:06:42 pm' author 'DavidGurtner' ancestors ((name 'Pinocchio-DavidGurtner.101' message 'exporting annotations now' id 'c1239e86-cbcb-4521-8485-6a7421845e72' date '11 March 2010' time '4:22:49 pm' author 'DavidGurtner' ancestors ((name 'Pinocchio-ToonVerwaest.100' message 'exporting setbucket and dictbucket as internal classes' id 'faf135cb-12f9-46a4-b7d5-8d0a5fd0e6c5' date '11 March 2010' time '2:31:59 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-inurBollimaC.99' message 'moving Dict and Set into separate Collection' id '67cb9d97-e3cf-4962-ae15-08c2b7462e12' date '10 March 2010' time '6:40:40 pm' author 'inurBollimaC' ancestors ((name 'Pinocchio-DavidGurtner.98' message 'Changed Compiler to understand NativeMethods...' id '87acc936-1214-4589-9ac1-6e717412d22c' date '10 March 2010' time '6:22:17 pm' author 'DavidGurtner' ancestors ((name 'Pinocchio-inurBollimaC.97' message 'happy comit to me blu' id 'fd65de0b-1a09-40e7-b0e6-ff1ad95cb0ba' date '10 March 2010' time '6:10:47 pm' author 'inurBollimaC' ancestors ((name 'Pinocchio-inurBollimaC.96' message 'he adds more code hop id dosnt brake' id 'f2462ac9-ed13-4c42-b12d-bd0bfa89e7eb' date '10 March 2010' time '6:08:08 pm' author 'inurBollimaC' ancestors ((name 'Pinocchio-ToonVerwaest.95' message 'momentarily preventing some overwriting of native code... ' id 'b14dcb25-4aef-46d6-8da7-1817a3d9f571' date '10 March 2010' time '3:18:59 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.94' message 'merging commit' id '9c37d09d-aaf0-472b-b453-679da8d7fe7e' date '10 March 2010' time '3:09:29 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.93' message 'removing dependency' id '2465fbdc-3073-4988-9810-b832b5fef5ca' date '10 March 2010' time '3:06:07 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-inurBollimaC.92' message 'adding tons of set and dict tests finished dict and set implementation using PSetBucket and PDictBucket. Sets and Dicts work linearily up to a certain given limit' id '4a3cd57f-71a1-431f-8dbd-167e19ff6dc0' date '9 March 2010' time '11:09:15 pm' author 'inurBollimaC' ancestors ((name 'Pinocchio-inurBollimaC.91' message 'merging' id '8f73d68d-30c8-4985-a57f-2b628b853146' date '9 March 2010' time '2:26:38 pm' author 'inurBollimaC' ancestors ((name 'Pinocchio-inurBollimaC.90' message 'maybe forgot committing the collection changes' id '7f6689a2-4ff4-45e9-986c-a2b3f37b962e' date '9 March 2010' time '2:25:44 pm' author 'inurBollimaC' ancestors ((name 'Pinocchio-inurBollimaC.89' message '.won eman wen a evah I' id '802693dc-f8d2-44d0-a353-d02092f65906' date '9 March 2010' time '2:22:28 pm' author 'inurBollimaC' ancestors ((name 'Pinocchio-CamilloBrun.88' message 'reimplemtented the dictionary in smalltalk for testing purposes' id '6145e1ad-deec-41e4-ba2d-9bd895913d31' date '9 March 2010' time '9:14:04 am' author 'CamilloBrun' ancestors ((name 'Pinocchio-CamilloBrun.87' message 'added Dictionary tests and a few more methods' id '23393e04-c116-4c58-b6ea-b8faa4150a66' date '8 March 2010' time '4:23:03 pm' author 'CamilloBrun' ancestors ((name 'Pinocchio-David_Gurtner.86' message 'putting a methodname into a file to be loaded no longer requires a methodname.' id '6fe28e19-9f73-473e-b878-57a21149c810' date '8 March 2010' time '2:04:45 am' author 'David Gurtner' ancestors ((name 'Pinocchio-DavidGurtner.85' message 'very! basic read eval loop...' id 'eb1e42b2-6833-4ae4-980b-3d94608cfdf2' date '4 March 2010' time '5:55:09 pm' author 'DavidGurtner' ancestors ((name 'Pinocchio-ToonVerwaest.84' message 'adding do: to non-sized layout objects' id '6776273e-254c-4144-8176-55b9fb5e832d' date '4 March 2010' time '4:21:06 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-DavidGurtner.83' message 'added PInterpreter' id '599e323c-712f-4204-b153-24a3d327e752' date '4 March 2010' time '3:09:38 pm' author 'VincentVanGogh' ancestors ((name 'Pinocchio-CamilloBruntToonVerwaesi.82' message 'made it work by feeding. added shortcuts for stderr' id '71324f6e-a759-487e-b754-65457623136f' date '3 March 2010' time '2:41:34 pm' author 'CamilloBrun' ancestors ((name 'Pinocchio-CamilloBruni-ToonVerwaest.81' message 'fixing path creation in SCParser refactor methods' id '48d144cd-2742-4833-a8a8-d442090d6a8b' date '3 March 2010' time '11:50:43 am' author 'CamilloBrun' ancestors ((name 'Pinocchio-CamilloBrun.80' message 'added smalltalk theme changes added another package test' id '63d995da-1ca1-4c90-a596-bf39eec6f0e6' date '3 March 2010' time '9:57:07 am' author 'CamilloBrun' ancestors ((name 'Pinocchio-ToonVerwaest.79' message 'don''t use cr but lf.' id '0c2fe7ff-c814-4a91-ba3d-0fedbb0efa5b' date '2 March 2010' time '2:22:39 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-CamilloBrun.78' message 'creating code.p file on beforehand' id '9a845d40-8bc9-4d27-b644-3cebccec97e5' date '2 March 2010' time '11:52:37 am' author 'CamilloBrun' ancestors ((name 'Pinocchio-ToonVerwaest.77' message 'use ensurePackageNamed: to build package structure! otherwise backlinks aren''t established. probably some other minor stuff too..' id 'dd3ddd3a-7c4b-4bc2-92c8-a568cc818267' date '1 March 2010' time '10:18:57 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.76' message 'started exporting layouts' id '9e401e42-7f7c-4f3e-af0e-690f31120810' date '1 March 2010' time '8:11:24 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.75' message 'trying to make the behavior of the compiler sane for block/method variable identifiers.' id '1ed4607a-3a44-412b-bb32-ee86f2c817db' date '1 March 2010' time '6:35:29 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.74' message 'another layout mismatch fixed. now problems with uns_int vs smallint ...' id '8470b8cf-60c6-49ba-a4a2-41f54224e94f' date '1 March 2010' time '6:15:14 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.73' message 'more work on the compiler; matching format ph<->C' id '7eade086-e167-4229-b232-91672e4b1cd3' date '1 March 2010' time '6:10:26 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.62' message 'remove class' id '0fdbc6e4-25af-418b-9a1d-1adf0e4a9da6' date '23 February 2010' time '11:49:54 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-CamilloBrun.61' message 'added nice chime after exporting' id 'd14e54a3-8151-40dc-bbe3-110527c25c71' date '23 February 2010' time '11:47:10 pm' author 'CamilloBrun' ancestors ((name 'Pinocchio-ToonVerwaest.60' message 'use a World-stub for PCompilerTest. all compiler tests succeed now. onto creating a decent world' id '4cbc9dbf-5409-4ee5-ad12-0fe5b6c92c98' date '23 February 2010' time '10:22:18 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.59' message 'only export classes which haven''t been removed... just ignore those for now.' id '4e44bd95-2cf1-4e78-81e8-d70b157d18ec' date '23 February 2010' time '8:55:48 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-CamilloBrun.58' message 'made gofer changes' id '3153960d-2013-4164-960b-d5774dae59ac' date '23 February 2010' time '6:53:58 pm' author 'CamilloBrun' ancestors ((name 'Pinocchio-CamilloBrun.57' message 'asdf' id '90b3114b-e5d4-4ca2-bf1d-41e2bac03bec' date '23 February 2010' time '6:50:51 pm' author 'CamilloBrun' ancestors ((name 'Pinocchio-CamilloBrun.56' message 'added world menu to export the pinocchio code' id 'f639d9e4-6b2f-4989-8e48-8fc418eb60af' date '23 February 2010' time '6:17:47 pm' author 'CamilloBrun' ancestors ((name 'Pinocchio-CamilloBrun.55' message 't&c exporting single classes by having decent instvar names (hacked in...O)' id '7af1c720-21d6-49fa-8ed9-b817d1134b42' date '23 February 2010' time '6:01:53 pm' author 'CamilloBrun' ancestors ((name 'Pinocchio-CamilloBrun.54' message 'rpelacing all cr''s with lf''s for better readable files' id '7430e710-8a9d-4e11-bc73-9f07f66a0e82' date '23 February 2010' time '4:41:33 pm' author 'CamilloBrun' ancestors ((name 'Pinocchio-CamilloBrun.53' message 'making tests work (not fully)' id 'd10251af-1d0d-427b-8d0a-61be6f116e4e' date '23 February 2010' time '3:38:20 pm' author 'CamilloBrun' ancestors ((name 'Pinocchio-ToonVerwaest.52' message 'adding at:ifPresent:' id 'e2b6381a-91a9-46d0-8035-6bbfc9a3d597' date '23 February 2010' time '12:02:58 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.51' message 'export superclass for all non-core classes (which are Object, Behavior, Class and Metaclass)' id '78f59527-56a2-4989-a905-3ee9be692df9' date '23 February 2010' time '11:45:50 am' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.50' message 'don''t dump layout of internal classes...' id '37e8d793-98ed-4ba8-a2e1-417665217eac' date '22 February 2010' time '10:33:32 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.49' message 'starting to wonder how this ever worked :) still need to remove overhead of layout dumping when not necessary (although we''ll probably need it in the end anyway...)' id '9bec2b1a-fcda-4c8c-8b2f-b32e7f717548' date '22 February 2010' time '10:16:05 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.48' message 'seems like it was completely broken. Tried to unify the way we do things a bit. apparently test/ doesn''t get purged like lib...' id '9a980e4c-a14e-45e9-ac33-151de6321ceb' date '22 February 2010' time '9:46:25 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-CamilloBrun.47' message 'comitting empty changes' id 'b6e270b3-f292-41de-8702-d0426289f5c2' date '22 February 2010' time '5:28:44 pm' author 'CamilloBrun' ancestors ((name 'Pinocchio-CamilloBrun.46' message 'extracting PSelf' id 'e41c9e46-61cd-4879-95bf-bdbba26c02b0' date '22 February 2010' time '5:15:14 pm' author 'CamilloBrun' ancestors ((name 'Pinocchio-CamilloBruni.45' message 'added magic test which is failing' id '1e722e54-efc9-445e-93b7-ed4a33de09fd' date '22 February 2010' time '5:08:04 pm' author 'CamilloBrun' ancestors ((name 'Pinocchio-CamilloBrun.44' message 'ignoring PCDumper tests for now' id 'c4d4ab9b-45f0-486f-97cc-7a97e39e1743' date '22 February 2010' time '1:45:55 pm' author 'CamilloBrun' ancestors ((name 'Pinocchio-CamilloBrun.43' message 'fixing one test. Ignoring PCDumperTest for now' id 'a140a5e7-7101-4395-865e-881bb6f075bf' date '22 February 2010' time '1:45:21 pm' author 'CamilloBrun' ancestors ((name 'Pinocchio-ToonVerwaest.42' message 'removing unnecessary methods' id 'e6c87a5c-cb03-4b22-81eb-84dd5d4692f2' date '22 February 2010' time '1:12:09 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.41' message 'fixed compiler test' id '5d300d0a-d4c9-4060-9ec6-d77e94b9da48' date '22 February 2010' time '1:08:39 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.40' message 'removed selector; generated code still works. now have to adapt tests' id '728bd986-eaf1-433a-a1d7-4faa0a5adbcc' date '22 February 2010' time '12:07:19 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.39' message 'starting to remove selector from Method by generating a methodclosure in the compiler' id 'bc01e4cf-8faa-49f5-9164-627e890a6d5d' date '22 February 2010' time '12:06:08 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.38' message 'removed depth from block and directly save it in all the instvars' id '78b8b9f3-3ccd-48a6-9a8f-26cbf7ca1823' date '22 February 2010' time '11:45:12 am' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.37' message 'minor PAST cleanup' id 'c7491756-2f72-42b4-8b5b-003267c10218' date '19 February 2010' time '4:28:25 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.36' message 'removed hasReturn from P-AST' id '2c89401c-013a-468b-b702-79010baaafee' date '19 February 2010' time '4:21:33 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.35' message 'removing type-related code. might want to reintroduce later but rather cleanup now...' id 'fb9da168-3aaf-4243-b3ec-224feb48c5ad' date '19 February 2010' time '3:45:15 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.34' message 'cleaning up the ST-AST mess.' id '9e7847b7-b67c-4874-99b3-3a5ccffbc0d3' date '19 February 2010' time '3:41:37 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.33' message 'more cleanup' id '47e2657d-0c87-42ee-b42a-f7d2b5b11988' date '19 February 2010' time '3:10:12 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.32' message 'fixed all the compiler tests by throwing out idiotic type-checks' id '6b79eb03-36fe-4f05-9cf5-47b3b291a0a1' date '19 February 2010' time '2:36:42 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.31' message 'small cleanups all over' id '76766d47-e182-4aae-9714-253c43b41a66' date '19 February 2010' time '1:50:25 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.30' message 'removed more unnecessary typeconversions in PPackage' id '85fa41bf-1a8e-4aae-acf7-337f25edb6fd' date '19 February 2010' time '1:16:22 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.29' message 'cleaned up the conversion mess in PRootPackage / PPackage. ' id '824a5d85-d8bd-42e0-b8f0-eb428fa752dc' date '19 February 2010' time '1:12:52 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.28' message 'fixed PConstants. Now the compiler is asPObjectfree.' id '587ee34a-c0f1-4c7d-a55a-5a4d5b90a8b1' date '19 February 2010' time '1:03:15 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.27' message 'fixed all asPObject on asSymbols. Now onto the constants' id 'd0aa04a7-1dfe-44ed-b43c-57271b8001e2' date '19 February 2010' time '12:58:34 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.26' message 'removed all asArray asPObject from PCompiler; now just asArray. The bridgetest will have to ensure (if it cares) that it''s a PObject. now on to symbols.' id 'f0955813-de03-471c-b026-d0dd090de865' date '19 February 2010' time '12:44:13 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.25' message 'removed remaining asP* in favor of asPObject' id '635de97e-12cf-49a6-aa98-d5305167010d' date '18 February 2010' time '9:44:55 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.24' message 'removed all references to asPSymbol and fixed a bug I introduced before' id '0135bb8f-6e83-4e88-bf21-f081755ed981' date '18 February 2010' time '9:35:03 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.23' message 'applied some fixes in the testexporter needed to match the updated compiler' id 'e01037ad-305b-48b5-bd08-f6e9cf4b602d' date '18 February 2010' time '5:03:17 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.22' message 'cleaned up keywords-related code' id '189e6467-c7fc-498e-b0f4-8c2de52466af' date '18 February 2010' time '4:08:06 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.21' message 'more work on fixing the whole mess that''s supposed to compile stuff' id '36066c81-9514-4a77-8dc9-628b29f33309' date '18 February 2010' time '3:58:05 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.20' message 'started removing all asP and replacing with asPObject' id '8fac93b4-a0ca-4198-8dba-8828015baa95' date '18 February 2010' time '2:42:50 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.19' message 'minor changes' id 'c123bc78-ce5e-410b-a627-057c8118a81b' date '18 February 2010' time '2:18:40 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.18' message 'renamed PASTVisitor to PCompiler' id '7d0637f9-7665-4e89-bf3a-b7a1554bb72f' date '18 February 2010' time '12:07:57 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.17' message 'minor changes' id 'dade3c19-b931-487f-a255-55b5ef8c1064' date '18 February 2010' time '12:07:07 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.16' message 'working on cleaning up the mapping of variables/instance variables' id '7518dd3c-2e69-435c-bf9c-173011632cf5' date '18 February 2010' time '11:35:27 am' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.15' message 'trying to fix pClassName and pinocchioName mess... still work to be done...' id '1409a458-b92a-4181-bf80-1cdbcf342272' date '17 February 2010' time '5:41:46 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.14' message 'improved lots of stuff! soooo much I don''t even remember what I actually did...' id 'b36b7015-78f2-4832-9427-440df66845f1' date '17 February 2010' time '5:21:06 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.13' message 'more cleanup changes. flagged lookupNamed: to check if it''s actually used. true asPObject anyone?' id 'ce77fc8b-dca9-459d-84a8-83d8fe876ea9' date '17 February 2010' time '4:32:24 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.12' message 'merge commit' id 'b3ca5e35-b797-4276-8b62-7d51519854c9' date '17 February 2010' time '3:58:19 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.11' message 'fixing my side of the bug' id '6b699ff5-577b-4c9e-977b-a397af7a66a7' date '17 February 2010' time '3:57:47 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.8' message 'made code look like C, enough to support numArgs directly' id '94088035-7ea2-4ec9-ab27-b1cebe4d82d6' date '17 February 2010' time '3:13:05 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.7' message 'small changes to catch removed code from the C side' id '4f1fff97-a0ef-44cd-a4bf-1ef6d96e4c5c' date '17 February 2010' time '2:38:40 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.6' message 'another try at committing my code. added a test for PDictionary.' id '469e7f7b-5fa5-457b-8036-c047a0aeb0d6' date '17 February 2010' time '11:48:56 am' author 'ToonVerwaest' ancestors ((name 'Pinocchio-CamilloBruni.5' message 'ad' id '721f211c-c0de-4e2e-8ea8-648ef7df8299' date '16 February 2010' time '4:37:10 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-CamilloBruni.4' message 'asdf' id 'abdb5096-7403-4483-b2a4-bc3b866ab54c' date '16 February 2010' time '4:34:56 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-CamilloBruni.3' message 'a' id '42b1e626-4503-4958-afcc-42b1bcfc6d65' date '16 February 2010' time '4:34:41 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-ToonVerwaest.2' message 'basic cleanup' id 'de57b405-12c0-47fe-adfb-84e95a1870e5' date '16 February 2010' time '4:26:01 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-ToonVerwaest.1' message 'Moving to Pinocchio from SpyCam' id '600a7643-062a-49a6-b220-4f08a530dd2d' date '16 February 2010' time '2:42:06 pm' author 'CamilloBruni' ancestors () stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())(name 'Pinocchio-VincentVanGogh.10' message 'started to write code. damn brushes' id '78bc9983-e3c3-46bd-a70c-2154573e821c' date '17 February 2010' time '3:30:14 pm' author 'VincentVanGogh' ancestors ((name 'Pinocchio-VincentVanGogh.9' message 'painting landscapes' id 'e7294ce0-e295-49ef-8a42-7bf96defcf14' date '17 February 2010' time '3:27:45 pm' author 'VincentVanGogh' ancestors ((name 'Pinocchio-VincentVanGogh.8' message 'painting landscapes. ' id '276d526a-ea61-47f1-90f3-da174f4e41c6' date '17 February 2010' time '3:26:45 pm' author 'VincentVanGogh' ancestors ((id '4f1fff97-a0ef-44cd-a4bf-1ef6d96e4c5c')) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())(name 'Pinocchio-VincentVanGogh.11' message 'he does like short classes. P export. for exporting the system' id 'b2a5abef-9614-472e-a624-6af4eb9c14ea' date '17 February 2010' time '3:55:20 pm' author 'VincentVanGogh' ancestors ((id '78bc9983-e3c3-46bd-a70c-2154573e821c')) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())(name 'Pinocchio-CamilloBrun.72' message 'adding compilation' id 'c2c49dd6-3238-4686-acc1-08c696d39e7a' date '1 March 2010' time '4:41:04 pm' author 'CamilloBrun' ancestors ((name 'Pinocchio-CamilloBrun.71' message 'adding more file tests' id '57950cdc-7a94-4e8c-ae3e-083dd040f40a' date '1 March 2010' time '1:17:05 pm' author 'CamilloBrun' ancestors ((name 'Pinocchio-CamilloBrun.70' message 'removed some Object casts in the CDumper' id '052ca0ed-0d26-4072-bbc5-e3e47cc15ddf' date '1 March 2010' time '11:30:11 am' author 'CamilloBrun' ancestors ((name 'Pinocchio-VincentVanGogh.69' message 'aborted art' id 'cbad578d-ab2b-4e95-ab4a-8c7c4a5afaa3' date '25 February 2010' time '5:58:21 pm' author 'VincentVanGogh' ancestors ((name 'Pinocchio-VincentVanGogh.68' message 'painted valleys and green fields, and then i put some paths between...' id '207e57ab-8c7f-4402-ad72-fc7e37133576' date '25 February 2010' time '5:19:11 pm' author 'VincentVanGogh' ancestors ((name 'Pinocchio-VincentVanGogh.67' message 'creating art by rearanging things' id 'a6bba13f-758b-40b8-a356-4a3cfa229c12' date '25 February 2010' time '2:31:42 pm' author 'VincentVanGogh' ancestors ((name 'Pinocchio-VincentVanGogh.66' message 'painted asPObject with white color till nobody sees it anymore' id 'afb291b4-20ff-4ca4-96f9-9d10f13c4ae8' date '25 February 2010' time '2:05:56 pm' author 'VincentVanGogh' ancestors ((name 'Pinocchio-David_Gurtner.65' message 'added packages.... needs reviewing ;)' id 'c8942619-d5af-4f66-9a39-240b639a0f3c' date '25 February 2010' time '12:27:35 am' author 'David Gurtner' ancestors ((name 'Pinocchio-VincentVanGogh.64' message 'the sun went down, i cannot continue to paint.' id 'e3d500bc-a6f7-4047-93cb-ec96c6199d63' date '24 February 2010' time '6:14:58 pm' author 'VincentVanGogh' ancestors ((name 'Pinocchio-CamilloBrun.63' message 'more tests' id '9b5ea792-477b-4029-8afc-cb69dc6944fc' date '24 February 2010' time '9:19:14 am' author 'CamilloBrun' ancestors ((name 'Pinocchio-CamilloBrun.62' message 'porting more tests directly to smalltalk' id 'a9939aec-142b-475c-a09e-d237302abaca' date '24 February 2010' time '9:06:37 am' author 'CamilloBrun' ancestors ((id 'd14e54a3-8151-40dc-bbe3-110527c25c71')) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())(name 'Pinocchio-DavidGurtner.90' message 'adding Collections-Unordered' id '53f1f335-eb62-47f6-a8c7-ea9127d7635d' date '9 March 2010' time '2:24:51 pm' author 'DavidGurtner' ancestors ((id '802693dc-f8d2-44d0-a353-d02092f65906')) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())(name 'Pinocchio-inurBollimaC.93' message 'fixing wrong inhertence of PSet' id 'b8e720f7-4678-4ca3-b165-cd9e8f1d61b1' date '10 March 2010' time '2:59:13 pm' author 'inurBollimaC' ancestors ((id '4a3cd57f-71a1-431f-8dbd-167e19ff6dc0')) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())(name 'Pinocchio-ToonVerwaest.96' message 'nicer errors.... colors!' id '9c2df550-2142-471a-9d0e-101a558115d7' date '10 March 2010' time '5:53:57 pm' author 'ToonVerwaest' ancestors ((id 'b14dcb25-4aef-46d6-8da7-1817a3d9f571')) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())(name 'Pinocchio-ToonVerwaest.106' message 'more runs; higher ratio!' id 'cd8988d0-ad98-41cc-8d8e-42613e2c3922' date '13 March 2010' time '11:13:13 pm' author 'ToonVerwaest' ancestors ((id 'e24ecf6f-130f-4efb-9379-79cc7cf575a4')) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())(name 'Pinocchio-DavidGurtner.164' message 'refactored the debugger to have a general purpose stepping interpreter, to use for example with the parallel debugger. did some work on that to, but because of issues with stacking interpreters i''ll postpone this for some other day' id '6b63764e-2ca7-4a1d-b5fc-fea713e8de96' date '26 March 2010' time '2:40:36 am' author 'DavidGurtner' ancestors ((name 'Pinocchio-DavidGurtner.163' message 'refactored the debugger to have a general purpose stepping interpreter, to use for example with the parallel debugger. did some work on that to, but because of issues with stacking interpreters i''ll postpone this for some other day' id '3047633a-93ec-4ddb-b8f8-5982bd286dca' date '26 March 2010' time '2:39:16 am' author 'DavidGurtner' ancestors ((id '05d57df1-cc95-46dd-a2e1-efd173be1d7f')) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())(name 'Pinocchio-ToonVerwaest.237' message 'context' id '05b0273a-be71-43d5-b65e-36c59fc609d4' date '20 May 2010' time '1:40:52 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.236' message 'making context external' id '49caccac-5981-403d-a6ea-93980486b72d' date '20 May 2010' time '1:31:29 pm' author 'ToonVerwaest' ancestors ((id '447d3c7f-864b-41db-b384-66fbaf41275e')) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())(name 'Pinocchio-ToonVerwaest.280' message 'returning from blocks at the end and generating their threaded versions too' id 'f020f7c5-86ed-4ed7-8183-58a424cf398b' date '9 June 2010' time '4:38:39 pm' author 'ToonVerwaest' ancestors ((id '532d9d12-6999-41f1-ae4a-63bb4880ec16')) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())(name 'Pinocchio-ToonVerwaest.296' message 'has to be cleaned up; but ok' id '4084a511-5c6f-4f93-9ca7-6d38e95a51f1' date '12 June 2010' time '4:45:15 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.295' message 'enable sends again' id '93d76f52-4a23-4858-b5a1-a8ae797037cd' date '12 June 2010' time '4:11:14 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.294' message 'push in bytecode' id '657025e0-d2dd-4cbd-b42f-6f0659644c13' date '12 June 2010' time '4:05:01 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.293' message 'pop->zap' id '98c5eb49-17bf-4e75-a366-e9352f7bba77' date '11 June 2010' time '11:18:17 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-CamilloBruni.292' message 'preparing for new image' id 'ae4c509c-3b02-48a5-9c60-fc9c714db087' date '11 June 2010' time '9:10:13 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-CamilloBruni.291' message 'new image' id '4c8df453-0bef-4a68-91c2-3b255f87c314' date '11 June 2010' time '8:50:47 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-CamilloBruni.290' message 'preparing for new image' id '66d9b9fc-d4f1-4cdd-9164-26260a6edb37' date '11 June 2010' time '8:49:56 pm' author 'CamilloBruni' ancestors ((id '8b0ffbfe-8c71-4664-85c7-c14160b47310')) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())(name 'Pinocchio-DavidGurtner.347' message 'adding PSocket' id '1f7fce63-fe7c-42e2-90e2-a7c18ef5817c' date '22 July 2010' time '3:02:59 pm' author 'DavidGurtner' ancestors ((name 'Pinocchio-DavidGurtner.346' message 'adding PSocket' id 'bc23aa6f-f6dd-4897-9982-7409c0f77a52' date '22 July 2010' time '3:02:29 pm' author 'DavidGurtner' ancestors ((id 'a3813a66-e915-46f2-ab5e-d8f0c66d3914')) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())(name 'Pinocchio-ewe.355' message 'Async socket working. Fixed also concurrency issue in yield. Still few glitches but the basics are there. ' id '58d56b6f-9e11-4d35-8324-e18be44a6d24' date '26 July 2010' time '4:48:18 pm' author 'ewe' ancestors ((name 'Pinocchio-CamilloBruni.354' message 'resetting SCParser upon export' id '3034324c-904e-476a-93f4-b9c577444774' date '26 July 2010' time '9:03:18 am' author 'CamilloBruni' ancestors ((name 'Pinocchio-CamilloBruni.353' message 'initialuzing the pinocchio gofer package properly' id 'e71840b1-d1f8-466d-bdc9-8428b5406d34' date '26 July 2010' time '8:46:18 am' author 'CamilloBruni' ancestors ((id 'cef27a75-963e-4902-8c0c-e541a910d9cc')) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())(name 'Pinocchio-ToonVerwaest.476' message 'small reduction in deleteRight overhead' id '5c70826b-2172-4ab9-8530-11b49fbebaf2' date '12 August 2010' time '11:11:25 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.475' message 'support for delete in addition to backspace' id '1e972915-3ab9-4e8f-9285-82de09f2ccae' date '12 August 2010' time '11:01:36 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-CamilloBruni.474' message 'disbling the SuperInstructor' id '53bb0b0f-780c-472d-bb13-de6fdc5caafe' date '12 August 2010' time '10:22:25 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-ToonVerwaest.473' message 'untangling readline and vterm' id 'ed474177-6f47-4f9b-9d42-930acd566b70' date '12 August 2010' time '10:16:50 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.472' message 'partial support for unfinished code' id '80cf337b-b741-4b53-8fba-9571ebe5e372' date '12 August 2010' time '6:38:05 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.471' message 'adding a smalltalk readline' id '123b93b5-3a0a-45b8-9dd6-e181aa4187a7' date '12 August 2010' time '6:10:06 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-CamilloBruni.470' message 'changin all new_Symbol_cached to new_Symbol' id '35e02538-c4fe-461f-8c82-4218aa3dbde0' date '12 August 2010' time '5:35:20 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-CamilloBruni.469' message 'writing out the monticello versioning number again' id '426873bb-797a-431d-ae3c-6da8e45a470e' date '11 August 2010' time '9:31:57 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-CamilloBruni.468' message 'dont declare the class for DictBucket' id '27efd174-00b6-4aed-8add-d38025cc99f0' date '10 August 2010' time '3:40:27 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-CamilloBruni.467' message 'cleaning up the classlinking' id '29a65a0b-f43f-46dd-99c1-851d1ff46392' date '10 August 2010' time '3:25:21 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-ToonVerwaest.466' message 'tiny optimizations' id 'e597d3be-3c61-471d-a4a2-e52def6ca4a8' date '10 August 2010' time '3:18:36 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.465' message 'fixed some random bugs; optimized PIndentableWriteStream' id '22a616d1-86db-48a0-ac94-92a027f1e59f' date '10 August 2010' time '2:55:17 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-CamilloBruni.464' message 'writing to buffer first; then optimized putting it on file' id 'd91d775d-fa19-4f7f-8ca9-cdabd894b94c' date '10 August 2010' time '12:23:11 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-CamilloBruni.463' message 'adding another missing method' id '85fa1565-93cc-457c-98c7-d2228fd78e16' date '10 August 2010' time '11:29:48 am' author 'CamilloBruni' ancestors ((name 'Pinocchio-CamilloBruni.462' message 'saving again' id 'c63c972b-9ca2-4dad-967a-18519f75ab83' date '10 August 2010' time '11:26:09 am' author 'CamilloBruni' ancestors ((name 'Pinocchio-CamilloBruni.461' message 'adding some changed newTestDictionary on TestResult to *Pinocchio ' id 'a74010ff-d1bf-4cfd-ab4a-d2edc0b30620' date '10 August 2010' time '9:53:50 am' author 'CamilloBruni' ancestors ((name 'Pinocchio-CamilloBruni.460' message 'adding some changed newTestDictionary on TestResult to *Pinocchio ' id '9b20e065-30c5-481b-8d6f-9bd82095242c' date '10 August 2010' time '9:36:57 am' author 'CamilloBruni' ancestors ((name 'Pinocchio-CamilloBruni.459' message 'fixing write on PWriteStream' id '2a7a1f77-7b51-4d78-be03-cfd82a5068d9' date '10 August 2010' time '8:23:17 am' author 'CamilloBruni' ancestors ((name 'Pinocchio-CamilloBruni.458' message 'saving without the kernel in the back shooting at you. friendly fire it said, before the image crashed...' id '96b525c1-ebd6-477a-8c46-fae09bce2a43' date '9 August 2010' time '10:47:54 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-CamilloBruni.457' message 'exporting the layout into each class'' C file' id '999c57b7-59d1-40ba-bddd-c5a52a8ff78f' date '9 August 2010' time '10:44:55 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-CamilloBruni.456' message 'Auto Commit on Exporting Pinocchio' id '7e40c598-ca29-43ce-81db-5ea987ade26e' date '9 August 2010' time '2:35:27 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-CamilloBruni.455' message 'Auto Commit on Exporting Pinocchio' id 'e8165623-9724-4327-ab12-f9acd46a0f5e' date '9 August 2010' time '2:25 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-CamilloBruni.454' message 'trying to add kernel klasses with a swiss accent' id '2850847d-f56b-4b80-ac21-2f871d753df2' date '9 August 2010' time '1:23:44 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-CamilloBruni.453' message 'empty log message' id 'bb159684-2a1e-43e5-a45e-d4c1584394ae' date '9 August 2010' time '1:19:48 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-CamilloBruni.452' message 'empty log message' id '7521b8bd-c0a1-464f-88e2-4f5afe5823d4' date '9 August 2010' time '1:18:18 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-CamilloBruni.451' message 'empty log message' id 'f57b7450-fc85-4454-b358-e6b7c80c6c76' date '9 August 2010' time '1:16:29 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-CamilloBruni.450' message 'adding kernel klasses' id '97b4b6bf-bc55-448d-bd22-e5f363b4876f' date '9 August 2010' time '1:15:44 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-CamilloBruni.449' message 'trying to add kernel klasses with a swiss accent' id '23b1c219-e44e-4c2b-bcb7-555ca3f8d65f' date '9 August 2010' time '1:15:03 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-ToonVerwaest.448' message 'use standard version for at:ifAbsentPut:; otherwise seems to give race issues' id 'b121ffb4-c640-4beb-80b3-4c4752de0e63' date '9 August 2010' time '12:08:04 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.447' message 'fixing subclassing of string/symbol' id 'bd771c61-86e5-40b0-ae78-9f1865472dac' date '9 August 2010' time '11:38:56 am' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.446' message 'adding inspect info to OrderedCollection' id '8e3ca297-338e-49ee-a6de-18b719f7a713' date '7 August 2010' time '10:53:07 am' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.445' message 'don''t export True/False' id '0157fbe9-8210-47f1-9f77-3b8417ff66d1' date '7 August 2010' time '10:40:52 am' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.444' message 'fixing accessibility of true/false/nil and adding error when assigning to constants' id 'f4b2a4bb-c142-4743-9ba0-ed7457f19b65' date '6 August 2010' time '7:58:01 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.443' message 'removing Pinocchio-Type in favor of Pinocchio-Object and Pinocchio-String' id '7db0644c-5d77-4f98-81b2-c0d45f800025' date '6 August 2010' time '7:40:22 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.442' message 'undoing the last change; actually better to see what the key is.' id '702af49f-fcf6-44a4-9c03-2597ebf829b1' date '6 August 2010' time '7:20:51 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.441' message 'nicer inspect labels in case of string/symbol' id '020eb314-cca8-497c-9c04-0e1e76030ea3' date '6 August 2010' time '7:19:32 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.440' message 'cleaning up the Inspector code' id '6b63f6ef-c5bf-42fd-8ea2-3b897f510d22' date '6 August 2010' time '7:17:46 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.439' message 'more finetuning; mostly printing stuff.' id '1624dad7-489d-4405-aae9-26aa60c4baa1' date '6 August 2010' time '7:12:25 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.438' message 'adding some nicer error messages' id 'abdd7f24-870f-42db-a589-a11b21217985' date '6 August 2010' time '6:59:19 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.437' message 'got rid of all nextPut(All) methods; except in Testblabla. cami can do that manually ;)' id 'de8dea14-4d72-4cec-ab28-097a98286089' date '6 August 2010' time '6:43:23 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.436' message 'start using write/writeAll for writing on streams. try to get rid of nextPut/nextPutAll altogether ' id 'dc583d04-1da3-4b06-8ff9-e81a68352a7e' date '6 August 2010' time '6:26:35 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.435' message 'cleaning up printing code.' id 'd2e2642d-5157-41d5-a551-ebd22b654ae4' date '6 August 2010' time '5:53:52 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.434' message 'stop using nextPutAll: and nextPut: everywhere; except in putOn:' id 'd984eafa-0b93-4a0b-8561-6c897abe685d' date '6 August 2010' time '5:40:36 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.433' message 'starting to use PTerminal' id '880c9c77-ee86-49ad-8255-eb7b8b13fad6' date '6 August 2010' time '5:09:43 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.432' message 'more cleaning up' id 'a2f23d20-1ab0-4459-8ec8-622fb46f2251' date '6 August 2010' time '4:33:46 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.431' message 'don''t put chars in ''''' id 'ba330424-f1ba-4cdb-8f9b-ed9a590f6b40' date '6 August 2010' time '4:16:07 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.430' message 'skip separators before starting to parse method.' id 'e676f5dd-6a83-48fe-860b-fb7b0af8dade' date '6 August 2010' time '3:16:13 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.429' message 'proper variable naming; depending on scope.' id '68262b63-08d8-4a30-bdf8-5ee56190cb66' date '6 August 2010' time '3:00:10 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.428' message 'exporting CharacterLayout' id '58f44327-e4a2-4231-98e5-7df83c669349' date '6 August 2010' time '12:13:34 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.427' message 'adding putOn: for character. Seems to have more bugs; must be the broken compiler...' id '58dfcbe3-c656-4c43-9d7f-a80ad1c50b54' date '5 August 2010' time '8:02:03 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.426' message 'small optimization using array literals. don''t export the symboltable!' id '80c0b719-22cb-4d8b-8538-49f1af1a004c' date '5 August 2010' time '7:48:04 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.425' message 'fixing the code and a test' id '3a0741f6-e1b2-4a2d-946f-0b2b4ada43ef' date '5 August 2010' time '6:13:06 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.424' message 'using Hamersley again; at least more comparable' id 'd9f53407-2365-43a6-9c4d-6c620d6d5c33' date '5 August 2010' time '5:51:29 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-CamilloBruni.423' message 'creating better timed tests for PDict' id 'ed262ff9-768a-4a90-942b-9083d59fb3e4' date '5 August 2010' time '5:22:43 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-ToonVerwaest.422' message 'better benchmarks' id 'c0c55fa6-08f1-45a8-b9e3-5ddc7309ce23' date '5 August 2010' time '4:43:04 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.421' message 'fixed writeTest ' id '1127b454-10db-48b4-8e27-1997dca9600d' date '5 August 2010' time '4:33:23 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.420' message 'forgot to remove some of the test classes' id '987468aa-c7e8-4664-9f86-ea2ba214ee46' date '5 August 2010' time '4:13:54 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.419' message 'removing invalid bucket tests. maybe readd later..' id '45bd5aea-4a9d-4671-87bc-cc17bb5646d8' date '5 August 2010' time '4:10:52 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.418' message 'using P(Identity?)(Set|Dictionary) everywhere now.' id '8990aed3-55d7-43ee-b25f-fd8785146112' date '5 August 2010' time '4:05:15 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.417' message 'Dictionary code cleanup' id '82b41353-2a15-42ea-b409-06407b30a481' date '5 August 2010' time '2:25:01 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-CamilloBruni.416' message 'using a hamersley sequence to make the dict tests predictable' id '97ad33a0-65ee-480a-a817-4f9fc8cd7429' date '5 August 2010' time '1:42:13 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-ToonVerwaest.415' message 'optimizing dicts' id 'b33d93a2-6d3d-4c84-a392-dc003c689846' date '5 August 2010' time '12:43:32 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.414' message 'adding a linear flag to PDictionary makes it quite a bit faster.' id '955ced4b-7310-4e0e-a133-426486099818' date '5 August 2010' time '12:42:23 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.413' message 'use ifNotNil: instead of ifNotNilDo:. ifNotNil: gets compiled away and is thus way faster.' id '1c38e593-50f5-448c-8772-968134ee1668' date '4 August 2010' time '3:55:04 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.412' message 'more identityDictionary use. need to start using PIdentitySet too; but first fix it.' id '7ff4df97-3dd9-41ca-8117-6e5c62ce1fe9' date '4 August 2010' time '3:28:55 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.411' message 'using PIdentityDictionary for PEG. It''s faster.' id 'c9634ede-5642-4e3c-aea6-5c3b1e894b0d' date '4 August 2010' time '3:25:40 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.410' message 'cleaning up dictionary / identitydictionary. making sure our hashes are not << 18.' id '67960057-74e6-4188-a7c8-e789bb38a521' date '4 August 2010' time '3:12:38 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.409' message 'reimplementation of PDictionary, PIdentityDictionary and PSet. PIdentitySet still to do; as well as adding more tests and performance profiling' id '45f9e99e-db57-49bf-b2ec-ad014de5364e' date '4 August 2010' time '11:57:51 am' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.408' message 'for now remove the name from ClassReference; get it from the Pinocchio class instead.' id 'b77cfb38-aa8e-496d-bef9-da4a1de99ad9' date '3 August 2010' time '9:10:05 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.407' message 'fixing package structure for new "toplevel" stuff' id '44548ff8-6215-47eb-a12a-69864602612c' date '3 August 2010' time '7:00:21 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.406' message 'exporting Slot as well. otherwise it obviously doesn''t work ;)' id '763dbed3-b0ab-4c06-a8ac-bded52092b92' date '3 August 2010' time '6:56:16 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.405' message 'more simplifying in asPClass / classlinker' id 'e2d7eea7-662d-468c-bee4-0afacc3c629d' date '3 August 2010' time '6:06:06 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.404' message 'cleaning up the API of PIdbox' id '6baff864-c5fc-425e-a2cc-ba0686c88819' date '3 August 2010' time '3:23:36 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.403' message 'more small cleanups ' id '80a389a8-ddd4-4f5a-98ca-fe146eda06ff' date '3 August 2010' time '2:16:58 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.402' message 'use PDictionary where possible ' id '79fed0b9-cbdd-4756-9680-43ac539d3457' date '3 August 2010' time '2:01:56 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.401' message 'more exporting cleanup. use literal arrays instead of OrderedCollections...' id 'c5cae9b0-222b-436e-9113-60784d88f6fb' date '3 August 2010' time '12:32:40 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.400' message 'a bit more sense making in exporting' id '4d69d9e5-46a1-4141-bae1-7439dd79b70c' date '3 August 2010' time '11:49:16 am' author 'ToonVerwaest' ancestors ((name 'Pinocchio-CamilloBruni.399' message 'adding more forgotten souls (aka. methods)' id '310ede1d-e3a6-4994-8689-c6d1eee1fb0a' date '2 August 2010' time '11:01:47 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-CamilloBruni.398' message 'comitting some forgotten methods' id '3e2deefe-1999-4674-9257-1e2b48e452a5' date '2 August 2010' time '10:59:53 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-CamilloBruni.397' message 'missing *PInocchio categorization added on ArrayedCollection' id 'ec512441-0f6b-49b4-bfb4-1e09a67f8eb6' date '2 August 2010' time '6:00:38 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-ToonVerwaest.396' message 'removing some old classes' id '0cb5c28c-28aa-48a8-a4a0-c08291acd5e8' date '2 August 2010' time '4:40:40 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.395' message 'fixing some tests' id '2f8f6ee4-1a45-44d8-9a7c-6ed1d75b9128' date '2 August 2010' time '4:27:33 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.394' message 'fixing << on NewlineStandardFileStream ' id 'ee0458be-70e2-4a7b-8f62-d25965b91147' date '2 August 2010' time '3:32:48 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.393' message 'use ifNotNilDo: rather than ifNotNil: if you want to get in a value' id '1f4da288-25d9-4150-9de5-c959bc1d92d5' date '2 August 2010' time '12:34:09 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.392' message 'forgot to preventExport ' id '3a6736cb-3369-4796-aaef-43063e3477dc' date '2 August 2010' time '12:00:47 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.391' message 'better integration with pharo: flag Pinocchio exceptions a bit more nicely' id '64f35571-9ff3-4bcd-b663-3548c80f5f6e' date '2 August 2010' time '11:42:27 am' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.390' message 'adding a parsingfailure guess based on the longest cached match.' id 'ace6a14e-81aa-4b5d-9e47-678a824a0879' date '2 August 2010' time '11:33:04 am' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.389' message 'reinserting the atEnd check; moving stack initialization to PEGStringScanner' id '4ec377d7-1c6e-4a97-9eba-de8b491d9076' date '2 August 2010' time '10:20:29 am' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.388' message 'fixing the parser tests. seems to be faster now?' id 'b04ecb68-2b2f-458d-b777-32b267e9b870' date '2 August 2010' time '10:13:30 am' author 'ToonVerwaest' ancestors ((name 'Pinocchio-CamilloBruni.387' message 'trying to fix exporting. more modular right but still not fully refactored, there are way to many hardcoded uids spread over the system.' id 'd7a1d2bd-7688-406a-8470-f0435d35b192' date '2 August 2010' time '12:33:55 am' author 'CamilloBruni' ancestors ((name 'Pinocchio-ToonVerwaest.386' message 'grrr camillo; update before you commit! :)' id '617ee129-9785-496d-8356-bd2889f9225d' date '1 August 2010' time '8:40:37 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.385' message 'making the REPL work again. file parsing doesn''t seem to always work yet ...' id '1e953bc6-04e8-4fb7-ac5c-2d43d5b27d7d' date '1 August 2010' time '12:03:02 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.384' message 'up to 242''000 with some more ST tweaks' id 'eeaf9628-467c-4209-8220-9bb43dfb27ea' date '31 July 2010' time '10:21:29 am' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.383' message 'simplifying radix by relying on numberFormat -> 241''000' id '70d29037-71bb-4ae3-894b-a496a6dfb643' date '31 July 2010' time '10:08:11 am' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.382' message 'small ST parser tweaks -> 240''000' id 'ed28ac77-6bc2-468f-87ea-85ed35404286' date '31 July 2010' time '10:04:55 am' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.381' message 'removed another one of those methods' id 'aac78d07-a66c-4e29-af74-4266f1e6d2b3' date '31 July 2010' time '9:59:01 am' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.380' message 'removing some initialize methods' id '4e92f5ba-2b3a-4ee5-a1c9-13238d725411' date '31 July 2010' time '9:57:51 am' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.379' message 'minor parser fixes; goes up to 236''000 now' id '048684e9-daad-41d1-adf0-388b7732d93e' date '31 July 2010' time '9:50:24 am' author 'ToonVerwaest' ancestors ((name 'Pinocchio-CamilloBruni.378' message 'fixing export of stream and added missing method on String (which should be done via proper inheritance from Collection)' id '73f4a63b-3a99-40e3-9aca-0328502d9dc6' date '30 July 2010' time '11:39:33 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-ToonVerwaest.369' message 'slight tweaks / cleanups' id 'fabb0fcc-6642-43f6-9b2b-e4a4fd04026e' date '29 July 2010' time '2:33:36 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.368' message 'slight optimization in scan' id '18806035-5024-459f-8448-c42959c81392' date '29 July 2010' time '1:53:56 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.367' message 'up to 190''000 chars/sec' id '95ec3d85-ae8b-4130-9600-e9d53930601f' date '29 July 2010' time '1:46:36 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.366' message 'adding support for fucked up smalltalk symbols' id '9671ed52-ad81-4808-8fdd-60b42885c893' date '29 July 2010' time '1:08:04 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.365' message 'more cleanups. Using IdentityDictionary instead of Dictionary for caches; copying over newFrom: to PEGStack for faster conversion. Goes up to 183''xxx now' id 'd68c3cec-d89d-4bb5-a8a2-4470e8d96ba8' date '29 July 2010' time '1:01:16 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.364' message 'more work on parsing. now at 173''000 chars/sec' id 'e086dfae-fca0-49b2-9117-2dc80c76a127' date '29 July 2010' time '10:28:39 am' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.363' message 'slight optimization on Not' id 'c35d437e-a6f1-4ab4-b4d2-fcd3e6e27d83' date '28 July 2010' time '5:46:58 pm' author 'ToonVerwaest' ancestors ((id 'c897fef5-c213-49eb-a900-a91b3abb5f9c')) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())(name 'Pinocchio-ToonVerwaest.377' message 'more nitpick cleanup 233''000 seems to be close to the limit with pushing.' id 'e308a10e-95ac-4577-aec5-cc6eb3b4499d' date '30 July 2010' time '11:28:20 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.376' message 'another one' id '348f89dc-b9ff-46f0-87ef-455e0294d21a' date '30 July 2010' time '10:09:09 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.375' message 'fixed the bug I introduced' id '3f38a846-0d9e-4a80-aa3a-a876734e0c35' date '30 July 2010' time '10:08:06 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.374' message 'small tweak' id '0790586f-721a-497b-a4db-f6f4bbd1add0' date '30 July 2010' time '10:07:06 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-CamilloBruni.373' message 'making exporting a bit faster' id '999e82fe-dad2-4f23-8f70-c5f6a96b96e4' date '30 July 2010' time '3:53:36 pm' author 'CamilloBruni' ancestors ((name 'Pinocchio-ToonVerwaest.372' message 'small cleanup; ready for the next optimization' id 'b81bb438-be0b-4658-9cac-40c0d1768dfe' date '30 July 2010' time '3:41:45 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.371' message 'reapplying lost optimizations in faster setting. 225''000 chars/sec' id '4fd76810-fb43-4771-8bf7-60a0e313f5ab' date '30 July 2010' time '10:10:35 am' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.370' message 'retry' id '2ec0273c-cf65-4a65-b431-5b4abfa1841f' date '29 July 2010' time '11:18:55 pm' author 'ToonVerwaest' ancestors ((id '95ec3d85-ae8b-4130-9600-e9d53930601f')) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())(name 'Pinocchio-CamilloBruni.385' message 'Auto Commit on Exporting Pinocchio' id 'fcd99013-c156-41ce-86f8-aa5b1897cdd5' date '1 August 2010' time '8:36:37 pm' author 'CamilloBruni' ancestors ((id 'eeaf9628-467c-4209-8220-9bb43dfb27ea')) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())(name 'Pinocchio-ToonVerwaest.451' message 'better organization' id '5b0e78e3-06bc-4ff1-9ec9-5228e9ccf710' date '9 August 2010' time '8:26:31 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.450' message 'more restructuring.' id '60675cc6-e519-4b89-a823-d62005827927' date '9 August 2010' time '6:24:56 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.449' message 'moving around classes' id '29197505-8f78-44dd-931f-ee2a89ae5ed7' date '9 August 2010' time '3:37:47 pm' author 'ToonVerwaest' ancestors ((id 'b121ffb4-c640-4beb-80b3-4c4752de0e63')) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())(name 'Pinocchio-CamilloBruni.472' message 'Auto Commit on Exporting Pinocchio' id '6f6b1013-2f45-4346-82fd-73dc528a23de' date '12 August 2010' time '9:49:51 pm' author 'CamilloBruni' ancestors ((id '123b93b5-3a0a-45b8-9dd6-e181aa4187a7')) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())(name 'Pinocchio-ewe.523' message 'starting on Time, Date and the such, not working atm! also started porting WebClient, will only have very base functionality in the end though.' id 'f5e5528c-2e6c-4bbb-85ed-94d2b2b2710d' date '25 August 2010' time '12:20:31 pm' author 'ewe' ancestors ((id 'f0649e40-72b5-47ad-bf84-785563d530b9')) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())(name 'Pinocchio-ToonVerwaest.549' message 'cleaning up and fixing ifTrue/ifFalse to:do:' id 'a5e4e8d9-d32e-4d64-b251-fafa325ed7c8' date '1 September 2010' time '3:51:11 pm' author 'ToonVerwaest' ancestors ((name 'Pinocchio-ToonVerwaest.548' message 'working towards to:by:do: and adding a native includesKey:' id '4aea077c-ff58-43d8-b2d7-1db0c63a35cb' date '1 September 2010' time '2:29:56 pm' author 'ToonVerwaest' ancestors ((id '4fb2c965-b119-48b1-903e-c39ce5e0ff5b')) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())(name 'Pinocchio-ewe.555' message 'WebServer working!' id 'e286855e-76cb-4e6a-93b8-af7d15e7bd58' date '13 September 2010' time '4:34:46 pm' author 'ewe' ancestors ((name 'Pinocchio-DavidGurtner.554' message 'work in progress: WebClient....' id '61a747ba-3de7-4cd3-9f96-3996a3de0d4d' date '9 September 2010' time '8:55:31 pm' author 'DavidGurtner' ancestors ((name 'Pinocchio-DavidGurtner.553' message 'WebServer work in progress' id '2664b559-b2c1-41ad-a5ca-3989533ec9d3' date '8 September 2010' time '8:11:10 pm' author 'DavidGurtner' ancestors ((id '9ce55333-d5fe-49c4-af5c-1ce2d5765283')) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())(name 'Pinocchio-ToonVerwaest.585' message 'saving threaded code in ThreadedCode instance to avoid crashing when inspecting (and having more specific objects rather than generic stuff)' id '5ad5bb4d-6bc4-40b9-b719-66e9318c5417' date '30 September 2010' time '12:02:59 pm' author 'ToonVerwaest' ancestors ((id '74602f61-5d77-444f-9780-860ba31fddf7')) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ()) \ No newline at end of file