Alexander Iljin
|
bad5408c76
|
*-docs: fix a typo in the word parametErized
|
2017-03-17 08:22:18 -07:00 |
John Benediktsson
|
8dfbbc7cf2
|
destructors: using ?delete in unregister-disposable.
|
2017-02-07 13:31:43 -08:00 |
Doug Coleman
|
c133c16377
|
core: Trim using lists from -tests and clean up a few irregularities.
|
2016-03-30 18:43:41 -07:00 |
John Benediktsson
|
b75def3bfb
|
hashtables: remove 2hashtable (not really used).
|
2016-03-03 14:38:16 -08:00 |
Doug Coleman
|
9c4ed3ddae
|
core: Don't use with-scope. H{ } clone [ ] with-variables is the same thing and is more explicit.
|
2016-03-02 17:18:42 -08:00 |
John Benediktsson
|
ceb75057da
|
change ERROR: words from throw-foo back to foo.
|
2015-08-13 16:13:05 -07:00 |
Doug Coleman
|
02008979d9
|
factor: Change ERROR: foo ; to define ``throw-foo`` instead of having ``foo`` throw implicitly. The old ``foo`` still throws implicitly because this is a big change to get right in one patch, but it should be removed soon.
|
2015-08-12 15:26:18 -05:00 |
Doug Coleman
|
e0d1b14e5c
|
factor: don't need FROM: namespaces => set or namespaces:set anymore
|
2015-08-12 11:25:57 -05:00 |
Doug Coleman
|
43d6f1d3e2
|
factor: Retrying on the unit tests. Also normalize some syntax with FUNCTION:.
|
2015-07-02 17:28:17 -07:00 |
Doug Coleman
|
59f3b1ea57
|
Revert "factor: rename [ ] [ ] unit-test -> { } [ ] unit-test using a refactoring tool!"
Needs a bit more work.
This reverts commit 7e54cc2824 .
|
2015-07-02 13:47:06 -07:00 |
Doug Coleman
|
7e54cc2824
|
factor: rename [ ] [ ] unit-test -> { } [ ] unit-test using a refactoring tool!
|
2015-07-02 11:36:08 -07:00 |
John Benediktsson
|
3f362dfc99
|
destructors: change check-disposed not to drop the disposable.
|
2014-11-21 08:19:05 -08:00 |
John Benediktsson
|
57f9d78892
|
improve help by linking to types directly.
|
2014-05-23 20:20:15 -07:00 |
John Benediktsson
|
98935b7f15
|
docs: change ``{ $quotation "( x -- y )" }`` to ``{ $quotation ( x -- y ) }``.
|
2014-05-18 20:09:10 -07:00 |
John Benediktsson
|
4dca0e6651
|
destructors: s/three slots/two slots/.
|
2013-08-24 13:10:41 -07:00 |
John Benediktsson
|
e0bbe0df38
|
destructors: bad $slot documentation.
|
2013-08-24 10:23:43 -07:00 |
John Benediktsson
|
bd9f24ac33
|
destructors: more efficient dispose-each (not using make).
|
2013-05-20 16:43:00 -07:00 |
John Benediktsson
|
26506a4b0b
|
destructors: use hash-sets to keep track of disposables.
|
2013-03-08 16:30:33 -08:00 |
John Benediktsson
|
87d65d66d6
|
destructors: adding dispose,.
|
2013-03-06 09:16:43 -08:00 |
John Benediktsson
|
5487480126
|
core: cleanup USING lists.
|
2013-03-05 10:34:47 -08:00 |
Doug Coleman
|
a7a34a3b9a
|
continuations: change continuation word to current-continuation. continuation is now just the tuple name. issue #358
|
2012-07-20 12:30:14 -07:00 |
Slava Pestov
|
76d2b83685
|
Add unless-disposed combinator to clean up some repetition, and fix bogus error reported from timer thread if an I/O operation with a set timeout fails on Windows
|
2010-08-23 21:12:24 -05:00 |
Daniel Ehrenberg
|
7074979745
|
Moving new-sets to sets
|
2010-02-26 16:01:01 -05:00 |
Slava Pestov
|
24c3ddbbde
|
Clean up startup/shutdown hook code
|
2009-11-20 00:57:49 -06:00 |
Doug Coleman
|
cc194416f9
|
Merge branch 'master' into startup
Conflicts:
core/bootstrap/primitives.factor
vm/run.hpp
|
2009-11-15 02:52:50 -06:00 |
Slava Pestov
|
064c00f78d
|
New identity-hashcode primitive
|
2009-11-10 21:18:54 -06:00 |
Doug Coleman
|
b34bfe563e
|
only call dispose-each once
|
2009-10-21 13:07:31 -05:00 |
Doug Coleman
|
a4a687ab32
|
clean up global destructors as a shutdown hook in case exit is called
|
2009-10-21 12:32:51 -05:00 |
Doug Coleman
|
6b6e56a179
|
change add-init-hook to add-startup-hook, new add-shutdown-hook word
|
2009-10-19 22:17:02 -04:00 |
Keith Lazuka
|
405e5d015b
|
docs: change $subsection to $subsections
|
2009-10-02 12:15:48 -04:00 |
Slava Pestov
|
c925724d7b
|
Improve destructors docs, fix bug where debug-leaks? wasn't being switched off
|
2009-08-24 21:44:48 -05:00 |
Slava Pestov
|
e44a0158e6
|
tools.destructors: leaks now tracks leaks globally
|
2009-08-24 20:45:06 -05:00 |
Slava Pestov
|
adc154e06b
|
destructors: already-unregistered error had the wrong content, also don't throw an error when disposing a disposable twice
|
2009-08-24 20:27:22 -05:00 |
Slava Pestov
|
b12bbaf7ec
|
tools.destructors: destructors. and leaks words now output a 'show instances' link which lists all relevant disposables
|
2009-08-24 20:21:38 -05:00 |
Slava Pestov
|
46045c882e
|
Disposables are now registered in a global disposables set. To take advantage of this, subclass disposable instead of providing a disposed slot and call new-disposable instead of new. tools.disposables defines two words, 'disposable.' and 'leaks', to help track down resource lifetime problems
|
2009-08-24 02:26:13 -05:00 |
Philipp Brüschweiler
|
230061783a
|
misc small documentation fixes, some fixes for factor.vim, changed permissions of vm/* to 644
|
2009-08-10 21:33:07 +02:00 |
Slava Pestov
|
a0e3f356c3
|
Fix conflict
|
2009-06-13 17:49:20 -05:00 |
Slava Pestov
|
7076d89fc3
|
destructors: fix docs typo reported by Blei in #concatenative
|
2009-06-13 17:36:47 -05:00 |
Doug Coleman
|
c5a5e94381
|
fix destructors docs
|
2009-06-12 02:43:13 -05:00 |
Slava Pestov
|
a4b2fa2aeb
|
destructors: improve docs
|
2009-05-27 19:37:03 -05:00 |
Doug Coleman
|
407377fc98
|
rename peek -> last and update all usages
|
2009-05-25 16:38:33 -05:00 |
Slava Pestov
|
723bfab030
|
Fixing unit tests for syntax change
|
2009-03-23 00:34:02 -05:00 |
Slava Pestov
|
9bf63b1613
|
New $quotation markup element
|
2008-11-16 09:03:30 -06:00 |
Slava Pestov
|
c19f2257f4
|
Fix permission bits
|
2008-10-02 08:34:49 -05:00 |
Doug Coleman
|
819234bedd
|
document dispose-each
|
2008-09-16 22:55:26 -05:00 |
Slava Pestov
|
44f53de164
|
Move make to its own vocabulary, remove fry _ feature
|
2008-09-10 20:07:00 -05:00 |
Doug Coleman
|
b1d26e100a
|
use if/when/unless-empty, docs
|
2008-09-06 17:10:32 -05:00 |
Doug Coleman
|
76fb3de616
|
new accessors
|
2008-09-02 01:55:36 -05:00 |
Slava Pestov
|
03cefc141e
|
Fixing unit tests
|
2008-05-15 01:38:14 -05:00 |
Slava Pestov
|
46c76b8b1b
|
Fix unit tests
|
2008-05-15 00:03:21 -05:00 |