]> gitweb.factorcode.org Git - factor.git/commitdiff
Builtinn types now use new slot accessors; tuple slot type declaration work in progress
authorSlava Pestov <slava@slava-pestovs-macbook-pro.local>
Sat, 28 Jun 2008 07:36:20 +0000 (02:36 -0500)
committerSlava Pestov <slava@slava-pestovs-macbook-pro.local>
Sat, 28 Jun 2008 07:36:20 +0000 (02:36 -0500)
138 files changed:
core/alien/alien-docs.factor
core/alien/alien.factor
core/alien/c-types/c-types.factor
core/alien/remote-control/remote-control.factor
core/alien/strings/strings.factor
core/alien/structs/structs-docs.factor
core/alien/structs/structs.factor
core/bootstrap/compiler/compiler.factor
core/bootstrap/image/image.factor
core/bootstrap/primitives.factor
core/bootstrap/stage2.factor
core/bootstrap/syntax.factor
core/byte-vectors/byte-vectors.factor
core/classes/algebra/algebra.factor
core/classes/classes.factor
core/classes/tuple/parser/parser-tests.factor [new file with mode: 0644]
core/classes/tuple/parser/parser.factor
core/classes/tuple/tuple-docs.factor
core/classes/tuple/tuple-tests.factor
core/classes/tuple/tuple.factor
core/combinators/combinators-tests.factor
core/combinators/combinators.factor
core/compiler/tests/intrinsics.factor
core/compiler/tests/redefine1.factor
core/compiler/tests/redefine3.factor
core/compiler/tests/simple.factor
core/compiler/tests/templates.factor
core/compiler/units/units.factor
core/continuations/continuations-tests.factor
core/cpu/ppc/intrinsics/intrinsics.factor
core/cpu/x86/64/64.factor
core/cpu/x86/intrinsics/intrinsics.factor
core/effects/effects.factor
core/generator/fixup/fixup.factor
core/generator/generator.factor
core/generic/generic-tests.factor
core/generic/generic.factor
core/generic/standard/engines/tuple/tuple.factor
core/generic/standard/standard-tests.factor
core/growable/growable-docs.factor
core/growable/growable.factor
core/hashtables/hashtables-docs.factor
core/hashtables/hashtables.factor
core/inference/backend/backend.factor
core/inference/class/class-tests.factor
core/inference/inference-tests.factor
core/inference/known-words/known-words.factor
core/inference/transforms/transforms-tests.factor
core/inspector/inspector.factor
core/io/streams/string/string.factor
core/io/styles/styles-docs.factor
core/kernel/kernel.factor
core/lexer/lexer.factor
core/math/bitfields/bitfields-tests.factor
core/math/math-docs.factor
core/math/math.factor
core/mirrors/mirrors.factor
core/optimizer/def-use/def-use-tests.factor
core/optimizer/inlining/inlining.factor
core/optimizer/known-words/known-words.factor
core/optimizer/math/math.factor
core/optimizer/math/partial/partial.factor
core/optimizer/optimizer-tests.factor
core/optimizer/specializers/specializers.factor
core/parser/parser.factor
core/prettyprint/backend/backend.factor
core/prettyprint/prettyprint.factor
core/prettyprint/sections/sections.factor
core/quotations/quotations.factor
core/sbufs/sbufs.factor
core/slots/deprecated/deprecated.factor
core/slots/slots-docs.factor
core/slots/slots-tests.factor [new file with mode: 0644]
core/slots/slots.factor
core/sorting/sorting.factor
core/strings/strings.factor
core/syntax/syntax-docs.factor
core/syntax/syntax.factor
core/vectors/vectors.factor
core/words/words-docs.factor
core/words/words-tests.factor
core/words/words.factor
extra/alias/alias.factor
extra/bit-vectors/bit-vectors.factor
extra/cpu/8080/emulator/emulator.factor
extra/db/queries/queries.factor
extra/delegate/delegate.factor
extra/descriptive/descriptive.factor
extra/fjsc/fjsc.factor
extra/float-vectors/float-vectors.factor
extra/furnace/furnace.factor
extra/furnace/utilities/utilities.factor
extra/help/help.factor
extra/help/lint/lint.factor
extra/help/markup/markup.factor
extra/html/templates/chloe/syntax/syntax.factor
extra/inverse/inverse.factor
extra/io/unix/sockets/secure/secure-tests.factor
extra/io/unix/unix.factor
extra/koszul/koszul.factor
extra/locals/locals.factor
extra/logging/logging.factor
extra/logging/parser/parser-docs.factor
extra/logging/parser/parser.factor
extra/logging/server/server.factor
extra/math/complex/complex.factor
extra/math/ratios/ratios-docs.factor
extra/math/ratios/ratios.factor
extra/multi-methods/multi-methods.factor
extra/odbc/odbc.factor
extra/optimizer/debugger/debugger.factor
extra/optimizer/report/report.factor
extra/present/present.factor
extra/reports/noise/noise.factor
extra/reports/optimizer/optimizer.factor
extra/semantic-db/semantic-db.factor
extra/serialize/serialize.factor
extra/tools/annotations/annotations.factor
extra/tools/crossref/crossref.factor
extra/tools/deploy/shaker/shaker.factor
extra/tools/profiler/profiler.factor
extra/tools/vocabs/browser/browser.factor
extra/tools/walker/walker.factor
extra/ui/commands/commands.factor
extra/ui/gestures/gestures.factor
extra/ui/tools/listener/listener.factor
extra/ui/tools/operations/operations.factor
extra/ui/tools/search/search.factor
extra/ui/windows/windows.factor
extra/unicode/script/script.factor
extra/unix/kqueue/kqueue.factor
extra/usa-cities/usa-cities.factor
extra/values/values.factor
extra/vars/vars.factor
extra/windows/messages/messages.factor
extra/xml/utilities/utilities.factor
extra/xmode/code2html/code2html.factor
extra/xmode/tokens/tokens.factor

index 0caf0e9a9fb9b1c18339fef32cefcd80e9eacf53..331aa819bb814eef664e4c1ee257ff942d228d7f 100755 (executable)
@@ -10,7 +10,7 @@ HELP: alien
 HELP: dll
 { $class-description "The class of native library handles. See " { $link "syntax-aliens" } " for syntax and " { $link "dll.private" } " for general information." } ;
 
-HELP: expired? ( c-ptr -- ? )
+HELP: expired?
 { $values { "c-ptr" "an alien, byte array, or " { $link f } } { "?" "a boolean" } }
 { $description "Tests if the alien is a relic from an earlier session. When an image is loaded, any alien objects which persisted in the image are marked as being expired."
 $nl
index cc37b85103d2af3cafb1c6ddbc38c59ba99dba78..9db6b5483718b96ab3500345518841858b4b2e41 100755 (executable)
@@ -1,13 +1,12 @@
 ! Copyright (C) 2004, 2008 Slava Pestov.
 ! See http://factorcode.org/license.txt for BSD license.
-USING: assocs kernel math namespaces sequences system
+USING: accessors assocs kernel math namespaces sequences system
 kernel.private bit-arrays byte-arrays float-arrays arrays ;
 IN: alien
 
 ! Some predicate classes used by the compiler for optimization
 ! purposes
-PREDICATE: simple-alien < alien
-    underlying-alien not ;
+PREDICATE: simple-alien < alien underlying>> not ;
 
 UNION: simple-c-ptr
 simple-alien POSTPONE: f byte-array bit-array float-array ;
@@ -17,12 +16,15 @@ alien POSTPONE: f byte-array bit-array float-array ;
 
 DEFER: pinned-c-ptr?
 
-PREDICATE: pinned-alien < alien
-    underlying-alien pinned-c-ptr? ;
+PREDICATE: pinned-alien < alien underlying>> pinned-c-ptr? ;
 
 UNION: pinned-c-ptr
     pinned-alien POSTPONE: f ;
 
+GENERIC: expired? ( c-ptr -- ? )
+
+M: alien expired? expired?>> ;
+
 M: f expired? drop t ;
 
 : <alien> ( address -- alien )
index 87fa553dc37d63e2268bc871c01bc295cb72a313..2fac81e1c67afa0e3d49576978d7734ddaeee669 100755 (executable)
@@ -242,11 +242,10 @@ M: long-long-type box-return ( type -- )
     } 2cleave ;
 
 : expand-constants ( c-type -- c-type' )
-    #! We use word-def call instead of execute to get around
+    #! We use def>> call instead of execute to get around
     #! staging violations
     dup array? [
-        unclip >r [ dup word? [ word-def call ] when ] map
-        r> prefix
+        unclip >r [ dup word? [ def>> call ] when ] map r> prefix
     ] when ;
 
 : malloc-file-contents ( path -- alien len )
index 027663a6458cdbeb72ff3bc552ffd5ac8886eb9e..344c8a2c5ab80e5225784ad42a139eb15293399a 100755 (executable)
@@ -1,7 +1,7 @@
 ! Copyright (C) 2007, 2008 Slava Pestov.
 ! See http://factorcode.org/license.txt for BSD license.
-USING: alien alien.c-types alien.strings parser threads words
-kernel.private kernel io.encodings.utf8 ;
+USING: accessors alien alien.c-types alien.strings parser
+threads words kernel.private kernel io.encodings.utf8 ;
 IN: alien.remote-control
 
 : eval-callback ( -- callback )
@@ -15,7 +15,7 @@ IN: alien.remote-control
     "void" { "long" } "cdecl" [ sleep ] alien-callback ;
 
 : ?callback ( word -- alien )
-    dup compiled? [ execute ] [ drop f ] if ; inline
+    dup compiled>> [ execute ] [ drop f ] if ; inline
 
 : init-remote-control ( -- )
     \ eval-callback ?callback 16 setenv
index 827d478d06a232bd6a50fd6bb910dfb531b2c633..70bbe773ee685f85175453933e8cdd5e4f1eaa7b 100755 (executable)
@@ -100,7 +100,7 @@ M: utf16n <encoder> drop utf16n <encoder> ;
     os windows? [ utf16n ] [ utf8 ] if alien>string ;
 
 : dll-path ( dll -- string )
-    (dll-path) alien>native-string ;
+    path>> alien>native-string ;
 
 : string>symbol ( str -- alien )
     [ os wince? [ utf16n ] [ utf8 ] if string>alien ]
index baf0b40707ff34fd7b30d937262a54d21cf2d85c..81e9ab97f7019ef0666dadc128d6e5609382695a 100755 (executable)
@@ -7,7 +7,7 @@ kernel words slots assocs namespaces ;
 : ($spec-reader-values) ( slot-spec class -- element )
     dup ?word-name swap 2array
     over slot-spec-name
-    rot slot-spec-type 2array 2array
+    rot slot-spec-class 2array 2array
     [ { $instance } swap suffix ] assoc-map ;
 
 : $spec-reader-values ( slot-spec class -- )
@@ -22,6 +22,9 @@ kernel words slots assocs namespaces ;
         " instance." ,
     ] { } make $description ;
 
+: slot-of-reader ( reader specs -- spec/f )
+    [ slot-spec-reader eq? ] with find nip ;
+
 : $spec-reader ( reader slot-specs class -- )
     >r slot-of-reader r>
     over [
@@ -49,6 +52,9 @@ M: word slot-specs "slots" word-prop ;
         " instance." ,
     ] { } make $description ;
 
+: slot-of-writer ( writer specs -- spec/f )
+    [ slot-spec-writer eq? ] with find nip ;
+
 : $spec-writer ( writer slot-specs class -- )
     >r slot-of-writer r>
     over [
index bc5fa5a3f18248e9eeed6dbfe67b540b9e3922c5..8671b77c9ea104708c5a3a3bc6f45251b1259f58 100755 (executable)
@@ -1,7 +1,7 @@
 ! Copyright (C) 2004, 2007 Slava Pestov.
 ! See http://factorcode.org/license.txt for BSD license.
-USING: arrays generic hashtables kernel kernel.private math
-namespaces parser sequences strings words libc slots
+USING: accessors arrays generic hashtables kernel kernel.private
+math namespaces parser sequences strings words libc slots
 slots.deprecated alien.c-types cpu.architecture ;
 IN: alien.structs
 
@@ -10,9 +10,9 @@ IN: alien.structs
 
 : struct-offsets ( specs -- size )
     0 [
-        [ slot-spec-type align-offset ] keep
+        [ class>> align-offset ] keep
         [ set-slot-spec-offset ] 2keep
-        slot-spec-type heap-size +
+        class>> heap-size +
     ] reduce ;
 
 : define-struct-slot-word ( spec word quot -- )
@@ -23,7 +23,7 @@ IN: alien.structs
     [ ]
     [ slot-spec-reader ]
     [
-        slot-spec-type
+        class>>
         [ c-getter ] [ c-type c-type-boxer-quot ] bi append
     ] tri
     define-struct-slot-word ;
@@ -32,7 +32,7 @@ IN: alien.structs
     [ set-writer-props ] keep
     [ ]
     [ slot-spec-writer ]
-    [ slot-spec-type c-setter ] tri
+    [ class>> c-setter ] tri
     define-struct-slot-word ;
 
 : define-field ( type spec -- )
@@ -77,13 +77,13 @@ M: struct-type stack-size
     -rot define-c-type ;
 
 : make-field ( struct-name vocab type field-name -- spec )
-    [
-        -rot expand-constants ,
-        over ,
-        3dup reader-word ,
-        writer-word ,
-    ] { } make
-    first4 0 -rot <slot-spec> ;
+    <slot-spec>
+        0 >>offset
+        swap >>name
+        swap expand-constants >>class
+        3dup name>> swap reader-word >>reader
+        3dup name>> swap writer-word >>writer
+    2nip ;
 
 : define-struct-early ( name vocab fields -- fields )
     -rot [ rot first2 make-field ] 2curry map ;
@@ -94,7 +94,7 @@ M: struct-type stack-size
 : define-struct ( name vocab fields -- )
     pick >r
     [ struct-offsets ] keep
-    [ [ slot-spec-type ] map compute-struct-align ] keep
+    [ [ class>> ] map compute-struct-align ] keep
     [ (define-struct) ] keep
     r> [ swap define-field ] curry each ;
 
index 5480bac4f581f6fb478c3fd10b98599a6e3a7a11..99f95932160e8e44ce380aacc057623fcfe388d4 100755 (executable)
@@ -1,11 +1,12 @@
 ! Copyright (C) 2007, 2008 Slava Pestov.
 ! See http://factorcode.org/license.txt for BSD license.
-USING: compiler cpu.architecture vocabs.loader system sequences
-namespaces parser kernel kernel.private classes classes.private
-arrays hashtables vectors classes.tuple sbufs inference.dataflow
-hashtables.private sequences.private math classes.tuple.private
-growable namespaces.private assocs words generator command-line
-vocabs io prettyprint libc compiler.units math.order ;
+USING: accessors compiler cpu.architecture vocabs.loader system
+sequences namespaces parser kernel kernel.private classes
+classes.private arrays hashtables vectors classes.tuple sbufs
+inference.dataflow hashtables.private sequences.private math
+classes.tuple.private growable namespaces.private assocs words
+generator command-line vocabs io prettyprint libc compiler.units
+math.order ;
 IN: bootstrap.compiler
 
 ! Don't bring this in when deploying, since it will store a
@@ -14,12 +15,12 @@ IN: bootstrap.compiler
     "alien.remote-control" require
 ] unless
 
-"cpu." cpu word-name append require
+"cpu." cpu name>> append require
 
 enable-compiler
 
 : compile-uncompiled ( words -- )
-    [ compiled? not ] filter compile ;
+    [ compiled>> not ] filter compile ;
 
 nl
 "Compiling..." write flush
@@ -40,8 +41,6 @@ nl
 
     wrap probe
 
-    underlying
-
     namestack*
 
     bitand bitor bitxor bitnot
index 64b2cdb550956e6913ac3d8687b2fa04e023ba17..e070fe1fd6c50371beb11c638bf875455613b01f 100755 (executable)
@@ -12,8 +12,8 @@ io.encodings.binary math.order accessors ;
 IN: bootstrap.image
 
 : my-arch ( -- arch )
-    cpu word-name
-    dup "ppc" = [ >r os word-name "-" r> 3append ] when ;
+    cpu name>> 
+    dup "ppc" = [ >r os name>> "-" r> 3append ] when ;
 
 : boot-image-name ( arch -- string )
     "boot." swap ".image" 3append ;
@@ -260,10 +260,10 @@ M: f '
             [
                 {
                     [ hashcode , ]
-                    [ word-name , ]
-                    [ word-vocabulary , ]
-                    [ word-def , ]
-                    [ word-props , ]
+                    [ name>> , ]
+                    [ vocabulary>> , ]
+                    [ def>> , ]
+                    [ props>> , ]
                 } cleave
                 f ,
                 0 , ! count
@@ -277,7 +277,7 @@ M: f '
     ] keep put-object ;
 
 : word-error ( word msg -- * )
-    [ % dup word-vocabulary % " " % word-name % ] "" make throw ;
+    [ % dup vocabulary>> % " " % name>> % ] "" make throw ;
 
 : transfer-word ( word -- word )
     [ target-word ] keep or ;
@@ -294,7 +294,7 @@ M: word ' ;
 ! Wrappers
 
 M: wrapper '
-    wrapped ' wrapper type-number object tag-number
+    wrapped>> ' wrapper type-number object tag-number
     [ emit ] emit-object ;
 
 ! Strings
@@ -345,7 +345,7 @@ M: float-array ' float-array emit-dummy-array ;
     tuple type-number dup [ emit-seq ] emit-object ;
 
 : emit-tuple ( tuple -- pointer )
-    dup class word-name "tombstone" =
+    dup class name>> "tombstone" =
     [ [ (emit-tuple) ] cache-object ] [ (emit-tuple) ] if ;
 
 M: tuple ' emit-tuple ;
@@ -354,11 +354,11 @@ M: tuple-layout '
     [
         [
             {
-                [ layout-hashcode , ]
-                [ layout-class , ]
-                [ layout-size , ]
-                [ layout-superclasses , ]
-                [ layout-echelon , ]
+                [ hashcode>> , ]
+                [ class>> , ]
+                [ size>> , ]
+                [ superclasses>> , ]
+                [ echelon>> , ]
             } cleave
         ] { } make [ ' ] map
         \ tuple-layout type-number
@@ -368,7 +368,7 @@ M: tuple-layout '
 M: tombstone '
     delegate
     "((tombstone))" "((empty))" ? "hashtables.private" lookup
-    word-def first [ emit-tuple ] cache-object ;
+    def>> first [ emit-tuple ] cache-object ;
 
 ! Arrays
 M: array '
@@ -379,10 +379,10 @@ M: array '
 
 M: quotation '
     [
-        quotation-array '
+        array>> '
         quotation type-number object tag-number [
             emit ! array
-            f ' emit ! compiled?
+            f ' emit ! compiled>>
             0 emit ! xt
             0 emit ! code
         ] emit-object
index e4e0db860915cdf7fb0dbef3ea8f21cc1e6af2a2..44f18603bf47c9b3c78f4fc78981b1ef7fcb1be4 100755 (executable)
@@ -5,7 +5,7 @@ hashtables.private io kernel math namespaces parser sequences
 strings vectors words quotations assocs layouts classes
 classes.builtin classes.tuple classes.tuple.private
 kernel.private vocabs vocabs.loader source-files definitions
-slots.deprecated classes.union classes.intersection
+slots classes.union classes.intersection
 compiler.units bootstrap.image.private io.files accessors
 combinators ;
 IN: bootstrap.primitives
@@ -133,9 +133,12 @@ bootstrapping? on
     [ f f f builtin-class define-class ]
     tri ;
 
-: define-builtin-slots ( symbol slotspec -- )
-    [ drop ] [ 1 simple-slots ] 2bi
-    [ "slots" set-word-prop ] [ define-slots ] 2bi ;
+: prepare-slots ( slots -- slots' )
+    [ [ dup array? [ first2 create ] when ] map ] map ;
+
+: define-builtin-slots ( class slots -- )
+    prepare-slots 1 make-slots
+    [ "slots" set-word-prop ] [ define-accessors ] 2bi ;
 
 : define-builtin ( symbol slotspec -- )
     >r [ define-builtin-predicate ] keep
@@ -189,16 +192,14 @@ bi
 
 "ratio" "math" create {
     {
-        { "integer" "math" }
         "numerator"
-        { "numerator" "math" }
-        f
+        { "integer" "math" }
+        read-only: t
     }
     {
-        { "integer" "math" }
         "denominator"
-        { "denominator" "math" }
-        f
+        { "integer" "math" }
+        read-only: t
     }
 } define-builtin
 
@@ -207,16 +208,14 @@ bi
 
 "complex" "math" create {
     {
+        "real"
         { "real" "math" }
-        "real-part"
-        { "real-part" "math" }
-        f
+        read-only: t
     }
     {
+        "imaginary"
         { "real" "math" }
-        "imaginary-part"
-        { "imaginary-part" "math" }
-        f
+        read-only: t
     }
 } define-builtin
 
@@ -226,104 +225,87 @@ bi
 
 "wrapper" "kernel" create {
     {
-        { "object" "kernel" }
         "wrapped"
-        { "wrapped" "kernel" }
-        f
+        { "object" "kernel" }
+        read-only: t
     }
 } define-builtin
 
 "string" "strings" create {
     {
-        { "array-capacity" "sequences.private" }
         "length"
-        { "length" "sequences" }
-        f
+        { "array-capacity" "sequences.private" }
+        read-only: t
     } {
-        { "object" "kernel" }
         "aux"
-        { "string-aux" "strings.private" }
-        { "set-string-aux" "strings.private" }
+        { "object" "kernel" }
     }
 } define-builtin
 
 "quotation" "quotations" create {
     {
-        { "object" "kernel" }
         "array"
-        { "quotation-array" "quotations.private" }
-        f
+        { "object" "kernel" }
+        read-only: t
     }
     {
+        "compiled"
         { "object" "kernel" }
-        "compiled?"
-        { "quotation-compiled?" "quotations" }
-        f
+        read-only: t
     }
 } define-builtin
 
 "dll" "alien" create {
     {
-        { "byte-array" "byte-arrays" }
-        "path"
-        { "(dll-path)" "alien" }
-        f
+       "path"
+         { "byte-array" "byte-arrays" }
+        read-only: t
     }
 }
 define-builtin
 
 "alien" "alien" create {
     {
+        "underlying"
         { "c-ptr" "alien" }
-        "alien"
-        { "underlying-alien" "alien" }
-        f
+        read-only: t
     } {
-        { "object" "kernel" }
         "expired?"
-        { "expired?" "alien" }
-        f
+        { "object" "kernel" }
+        read-only: t
     }
 }
 define-builtin
 
 "word" "words" create {
-    f
     {
-        { "object" "kernel" }
-        "name"
-        { "word-name" "words" }
-        { "set-word-name" "words" }
+        "hashcode"
+        { "fixnum" "math" }
     }
     {
+        "name"
         { "object" "kernel" }
+    }
+    {
         "vocabulary"
-        { "word-vocabulary" "words" }
-        { "set-word-vocabulary" "words" }
+        { "object" "kernel" }
     }
     {
-        { "quotation" "quotations" }
         "def"
-        { "word-def" "words" }
-        { "set-word-def" "words.private" }
+        { "quotation" "quotations" }
     }
     {
-        { "object" "kernel" }
         "props"
-        { "word-props" "words" }
-        { "set-word-props" "words" }
+        { "object" "kernel" }
     }
     {
+        "compiled"
         { "object" "kernel" }
-        "compiled?"
-        { "compiled?" "words" }
-        f
+        read-only: t
     }
     {
-        { "fixnum" "math" }
         "counter"
-        { "profile-counter" "tools.profiler.private" }
-        { "set-profile-counter" "tools.profiler.private" }
+        { "fixnum" "math" }
     }
 } define-builtin
 
@@ -337,34 +319,29 @@ define-builtin
 
 "tuple-layout" "classes.tuple.private" create {
     {
-        { "fixnum" "math" }
         "hashcode"
-        { "layout-hashcode" "classes.tuple.private" }
-        f
+        { "fixnum" "math" }
+        read-only: t
     }
     {
-        { "word" "words" }
         "class"
-        { "layout-class" "classes.tuple.private" }
-        f
+        { "word" "words" }
+        read-only: t
     }
     {
-        { "fixnum" "math" }
         "size"
-        { "layout-size" "classes.tuple.private" }
-        f
+        { "fixnum" "math" }
+        read-only: t
     }
     {
-        { "array" "arrays" }
         "superclasses"
-        { "layout-superclasses" "classes.tuple.private" }
-        f
+        { "array" "arrays" }
+        read-only: t
     }
     {
-        { "fixnum" "math" }
         "echelon"
-        { "layout-echelon" "classes.tuple.private" }
-        f
+        { "fixnum" "math" }
+        read-only: t
     }
 } define-builtin
 
@@ -375,15 +352,13 @@ define-builtin
     [
         {
             {
-                { "object" "kernel" }
                 "delegate"
-                { "delegate" "kernel" }
-                { "set-delegate" "kernel" }
+                { "object" "kernel" }
             }
-        }
+        } prepare-slots
         [ drop ] [ generate-tuple-slots ] 2bi
         [ "slots" set-word-prop ]
-        [ define-slots ]
+        [ define-accessors ]
         2bi
     ]
 } cleave
@@ -405,90 +380,19 @@ tuple
 2array >tuple 1quotation define-inline
 
 ! Some tuple classes
-"hashtable" "hashtables" create
-tuple
-{
-    {
-        { "array-capacity" "sequences.private" }
-        "count"
-        { "hash-count" "hashtables.private" }
-        { "set-hash-count" "hashtables.private" }
-    } {
-        { "array-capacity" "sequences.private" }
-        "deleted"
-        { "hash-deleted" "hashtables.private" }
-        { "set-hash-deleted" "hashtables.private" }
-    } {
-        { "array" "arrays" }
-        "array"
-        { "hash-array" "hashtables.private" }
-        { "set-hash-array" "hashtables.private" }
-    }
-} define-tuple-class
-
-"sbuf" "sbufs" create
-tuple
-{
-    {
-        { "string" "strings" }
-        "underlying"
-        { "underlying" "growable" }
-        { "set-underlying" "growable" }
-    } {
-        { "array-capacity" "sequences.private" }
-        "length"
-        { "length" "sequences" }
-        { "set-fill" "growable" }
-    }
-} define-tuple-class
-
-"vector" "vectors" create
-tuple
-{
-    {
-        { "array" "arrays" }
-        "underlying"
-        { "underlying" "growable" }
-        { "set-underlying" "growable" }
-    } {
-        { "array-capacity" "sequences.private" }
-        "fill"
-        { "length" "sequences" }
-        { "set-fill" "growable" }
-    }
-} define-tuple-class
-
-"byte-vector" "byte-vectors" create
-tuple
-{
-    {
-        { "byte-array" "byte-arrays" }
-        "underlying"
-        { "underlying" "growable" }
-        { "set-underlying" "growable" }
-    } {
-        { "array-capacity" "sequences.private" }
-        "fill"
-        { "length" "sequences" }
-        { "set-fill" "growable" }
-    }
-} define-tuple-class
-
 "curry" "kernel" create
 tuple
 {
     {
-        { "object" "kernel" }
         "obj"
-        { "curry-obj" "kernel" }
-        f
-    } {
         { "object" "kernel" }
+        read-only: t
+    } {
         "quot"
-        { "curry-quot" "kernel" }
-        f
+        { "object" "kernel" }
+        read-only: t
     }
-} define-tuple-class
+} prepare-slots define-tuple-class
 
 "curry" "kernel" lookup
 [ f "inline" set-word-prop ]
@@ -500,17 +404,15 @@ tuple
 tuple
 {
     {
-        { "object" "kernel" }
         "first"
-        { "compose-first" "kernel" }
-        f
-    } {
         { "object" "kernel" }
+        read-only: t
+    } {
         "second"
-        { "compose-second" "kernel" }
-        f
+        { "object" "kernel" }
+        read-only: t
     }
-} define-tuple-class
+} prepare-slots define-tuple-class
 
 "compose" "kernel" lookup
 [ f "inline" set-word-prop ]
index 5ee263469e7ffffa95d33b9adda6480c2da92eca..69f594b9faeea5fc72725c841eaceb22716cf6d7 100755 (executable)
@@ -1,6 +1,6 @@
 ! Copyright (C) 2004, 2008 Slava Pestov.
 ! See http://factorcode.org/license.txt for BSD license.
-USING: init command-line namespaces words debugger io
+USING: accessors init command-line namespaces words debugger io
 kernel.private math memory continuations kernel io.files
 io.backend system parser vocabs sequences prettyprint
 vocabs.loader combinators splitting source-files strings
@@ -36,7 +36,7 @@ SYMBOL: bootstrap-time
     "Bootstrap completed in " write number>string write
     " minutes and " write number>string write " seconds." print
 
-    [ compiled? ] count-words " compiled words" print
+    [ compiled>> ] count-words " compiled words" print
     [ symbol? ] count-words " symbol words" print
     [ ] count-words " words total" print
 
index f3d7707878b789d60ba09860cb9d0a76fbf22b6d..1155eef6cfb1eb8ad23b41f18503f4e6330760ec 100755 (executable)
@@ -45,6 +45,7 @@ IN: bootstrap.syntax
     "SINGLETON:"
     "SYMBOL:"
     "TUPLE:"
+    "SLOT:"
     "T{"
     "UNION:"
     "INTERSECTION:"
@@ -68,6 +69,8 @@ IN: bootstrap.syntax
     "<<"
     ">>"
     "call-next-method"
+    "initial:"
+    "read-only:"
 } [ "syntax" create drop ] each
 
 "t" "syntax" lookup define-symbol
index e80b797a8d42d7376ff920528dd8136d68b4f772..5560454b3a279c10964d2022db970abae643062f 100755 (executable)
@@ -4,6 +4,10 @@ USING: arrays kernel kernel.private math sequences
 sequences.private growable byte-arrays ;\r
 IN: byte-vectors\r
 \r
+TUPLE: byte-vector\r
+{ "underlying" byte-array }\r
+{ "length" array-capacity } ;\r
+\r
 <PRIVATE\r
 \r
 : byte-array>vector ( byte-array length -- byte-vector )\r
index a9c1520fc6b652278bd8e1ab53b2e47fa8a6273e..b7e4bebe151fe951bed5bc711b58de5f958af944 100755 (executable)
@@ -214,7 +214,7 @@ PREDICATE: empty-intersection < anonymous-intersection participants>> empty? ;
     [ "Topological sort failed" throw ] unless* ;\r
 \r
 : sort-classes ( seq -- newseq )\r
-    [ [ word-name ] compare ] sort >vector\r
+    [ [ name>> ] compare ] sort >vector\r
     [ dup empty? not ]\r
     [ dup largest-class >r over delete-nth r> ]\r
     [ ] unfold nip ;\r
index 35ff475abfda0ef56cb3920451eca8acbe8df089..2f4c56f8a8ce5c60422e5d25ba8e193b15432f62 100755 (executable)
@@ -1,6 +1,6 @@
 ! Copyright (C) 2004, 2008 Slava Pestov.
 ! See http://factorcode.org/license.txt for BSD license.
-USING: arrays definitions assocs kernel kernel.private
+USING: accessors arrays definitions assocs kernel kernel.private
 slots.private namespaces sequences strings words vectors math
 quotations combinators sorting effects graphs vocabs sets ;
 IN: classes
@@ -38,7 +38,7 @@ PREDICATE: tuple-class < class
 : classes ( -- seq ) implementors-map get keys ;
 
 : predicate-word ( word -- predicate )
-    [ word-name "?" append ] keep word-vocabulary create ;
+    [ name>> "?" append ] [ vocabulary>> ] bi create ;
 
 PREDICATE: predicate < word "predicating" word-prop >boolean ;
 
@@ -123,8 +123,8 @@ M: sequence implementors [ implementors ] gather ;
     dup class? [ dup [ implementors-map+ ] [ new-class ] bi ] unless
     dup reset-class
     dup deferred? [ dup define-symbol ] when
-    dup word-props
-    r> assoc-union over set-word-props
+    dup props>>
+    r> assoc-union >>props
     dup predicate-word
     [ 1quotation "predicate" set-word-prop ]
     [ swap "predicating" set-word-prop ]
diff --git a/core/classes/tuple/parser/parser-tests.factor b/core/classes/tuple/parser/parser-tests.factor
new file mode 100644 (file)
index 0000000..580907d
--- /dev/null
@@ -0,0 +1,59 @@
+IN: classes.tuple.parser.tests
+USING: accessors classes.tuple.parser lexer words classes
+sequences math kernel slots tools.test parser compiler.units ;
+
+TUPLE: test-1 ;
+
+[ t ] [ test-1 "slot-names" word-prop empty? ] unit-test
+
+TUPLE: test-2 < test-1 ;
+
+[ t ] [ test-2 "slot-names" word-prop empty? ] unit-test
+[ test-1 ] [ test-2 superclass ] unit-test
+
+TUPLE: test-3 a ;
+
+[ { "a" } ] [ test-3 "slot-names" word-prop ] unit-test
+
+[ object ] [ "a" test-3 "slots" word-prop slot-named class>> ] unit-test
+
+TUPLE: test-4 < test-3 b ;
+
+[ { "b" } ] [ test-4 "slot-names" word-prop ] unit-test
+
+TUPLE: test-5 { "a" integer } ;
+
+[ { { "a" integer } } ] [ test-5 "slot-names" word-prop ] unit-test
+
+TUPLE: test-6 < test-5 { "b" integer } ;
+
+[ integer ] [ "b" test-6 "slots" word-prop slot-named class>> ] unit-test
+
+[ { { "b" integer } } ] [ test-6 "slot-names" word-prop ] unit-test
+
+TUPLE: test-7 { "b" integer initial: 3 } ;
+
+[ 3 ] [ "b" test-7 "slots" word-prop slot-named initial>> ] unit-test
+
+TUPLE: test-8 { "b" integer read-only: t } ;
+
+[ t ] [ "b" test-8 "slots" word-prop slot-named read-only>> ] unit-test
+
+[ "IN: classes.tuple.parser.tests TUPLE: foo < test-1 < ;" eval ]
+[ error>> invalid-slot-name? ]
+must-fail-with
+
+[ "IN: classes.tuple.parser.tests TUPLE: foo :" eval ]
+[ error>> invalid-slot-name? ]
+must-fail-with
+
+[ "IN: classes.tuple.parser.tests TUPLE: foo" eval ]
+[ error>> unexpected-eof? ]
+must-fail-with
+
+[ ] [
+    [
+        { test-1 test-2 test-3 test-4 test-5 test-6 test-7 test-8 }
+        [ dup class? [ forget-class ] [ drop ] if ] each
+    ] with-compilation-unit
+] unit-test
index ab3be109e13e6824783d202124933d4ac563018f..a4bea6fed2e69c282c03d948e35d134451ac5c9f 100644 (file)
@@ -1,7 +1,7 @@
 ! Copyright (C) 2008 Slava Pestov.
 ! See http://factorcode.org/license.txt for BSD license.
-USING: kernel sets namespaces sequences inspector parser
-lexer combinators words classes.parser classes.tuple ;
+USING: accessors kernel sets namespaces sequences inspector parser
+lexer combinators words classes.parser classes.tuple arrays ;
 IN: classes.tuple.parser
 
 : shadowed-slots ( superclass slots -- shadowed )
@@ -13,7 +13,7 @@ IN: classes.tuple.parser
             "Definition of slot ``" %
             %
             "'' in class ``" %
-            word-name %
+            name>> %
             "'' shadows a superclass slot" %
         ] "" make note.
     ] with each ;
@@ -24,27 +24,27 @@ M: invalid-slot-name summary
     drop
     "Invalid slot name" ;
 
-: (parse-tuple-slots) ( -- )
+: parse-slot-name ( string/f -- ? )
     #! This isn't meant to enforce any kind of policy, just
     #! to check for mistakes of this form:
     #!
     #! TUPLE: blahblah foo bing
     #!
     #! : ...
-    scan {
+    {
         { [ dup not ] [ unexpected-eof ] }
-        { [ dup { ":" "(" "<" } member? ] [ invalid-slot-name ] }
-        { [ dup ";" = ] [ drop ] }
-        [ , (parse-tuple-slots) ]
+        { [ dup { ":" "(" "<" "\"" } member? ] [ invalid-slot-name ] }
+        { [ dup ";" = ] [ drop ] }
+        [ dup "{" = [ drop \ } parse-until >array ] when , t ]
     } cond ;
 
-: parse-tuple-slots ( -- seq )
-    [ (parse-tuple-slots) ] { } make ;
+: parse-tuple-slots ( -- )
+    scan parse-slot-name [ parse-tuple-slots ] when ;
 
 : parse-tuple-definition ( -- class superclass slots )
     CREATE-CLASS
     scan {
         { ";" [ tuple f ] }
-        { "<" [ scan-word parse-tuple-slots ] }
-        [ >r tuple parse-tuple-slots r> prefix ]
+        { "<" [ scan-word [ parse-tuple-slots ] { } make ] }
+        [ tuple swap [ parse-slot-name [ parse-tuple-slots ] when ] { } make ]
     } case 3dup check-slot-shadowing ;
index 9f8ce8324074f94dd97cf3fc994a4f1a207c16bf..f23c2d20eda0313f57589b9a8456109af7020f54 100755 (executable)
@@ -1,6 +1,7 @@
 USING: generic help.markup help.syntax kernel
 classes.tuple.private classes slots quotations words arrays
-generic.standard sequences definitions compiler.units ;
+generic.standard sequences definitions compiler.units
+growable vectors sbufs ;
 IN: classes.tuple
 
 ARTICLE: "parametrized-constructors" "Parameterized constructors"
@@ -242,6 +243,34 @@ $nl
 }
 "Note that if a slot is moved from a class to its superclass (or vice versa) in the same compilation unit, the value of the slot is preserved in existing instances, because tuple instance update always runs at the end of a compilation unit. However, if it is removed in one compilation unit and added in another, the value in existing instances is lost." ;
 
+ARTICLE: "protocol-slots" "Protocol slots"
+"A " { $emphasis "protocol slot" } " is one which is assumed to exist by the implementation of a class, without being defined on the class itself. The burden is on subclasses (or mixin instances) to provide this slot."
+$nl
+"Protocol slots are defined using a parsing word:"
+{ $subsection POSTPONE: SLOT: }
+"Protocol slots are used where the implementation of a superclass needs to assume that each subclass defines certain slots, however the slots of each subclass are potentially declared with different class specializers, thus preventing the slots from being defined in the superclass."
+$nl
+"For example, the " { $link growable } " mixin provides an implementation of the sequence protocol which wraps an underlying sequence, resizing it as necessary when elements are added beyond the length of the sequence. It assumes that the concrete mixin instances define two slots, " { $snippet "length" } " and " { $snippet "underlying" } ". These slots are defined as protocol slots:"
+{ $snippet "SLOT: length" "SLOT: underlying" }
+"An alternate approach would be to define " { $link growable } " as a tuple class with these two slots, and have other classes subclass it as required. However, this rules out subclasses defining these slots with custom type declarations."
+$nl
+"For example, compare the definitions of the " { $link sbuf } " class,"
+{ $code
+    "TUPLE: sbuf"
+    "{ \"underlying\" string }"
+    "{ \"length\" array-capacity } ;"
+    ""
+    "INSTANCE: sbuf growable"
+}
+"with that of the " { $link vector } " class:"
+{ $code
+    "TUPLE: vector"
+    "{ \"underlying\" array }"
+    "{ \"length\" array-capacity } ;"
+    ""
+    "INSTANCE: vector growable"
+} ;
+
 ARTICLE: "tuples" "Tuples"
 "Tuples are user-defined classes composed of named slots."
 { $subsection "tuple-examples" }
@@ -255,6 +284,8 @@ $nl
 { $subsection "tuple-constructors" }
 "Expressing relationships through the object system:"
 { $subsection "tuple-subclassing" }
+"Protocol slots:"
+{ $subsection "protocol-slots" }
 "Introspection:"
 { $subsection "tuple-introspection" }
 "Tuple classes can be redefined; this updates existing instances:"
index c93bd11ffe129259e4293c66ff5bdf7600676d54..a5282ce7d37d058addb963986884335b131145c9 100755 (executable)
@@ -88,13 +88,13 @@ C: <empty> empty
 [ t length ] [ object>> t eq? ] must-fail-with
 
 [ "<constructor-test>" ]
-[ "IN: classes.tuple.test TUPLE: constructor-test ; C: <constructor-test> constructor-test" eval word word-name ] unit-test
+[ "IN: classes.tuple.test TUPLE: constructor-test ; C: <constructor-test> constructor-test" eval word name>> ] unit-test
 
 TUPLE: size-test a b c d ;
 
 [ t ] [
     T{ size-test } tuple-size
-    size-test tuple-layout layout-size =
+    size-test tuple-layout size>> =
 ] unit-test
 
 GENERIC: <yo-momma>
@@ -253,8 +253,8 @@ test-laptop-slot-values
 
 [ laptop ] [
     "laptop" get 1 slot
-    dup layout-echelon swap
-    layout-superclasses nth
+    dup echelon>> swap
+    superclasses>> nth
 ] unit-test
 
 [ "TUPLE: laptop < computer battery ;" ] [
index df59f34ff472e710fc5325522eba4127d6e3c9c5..5db4a43bf0f75ce9f20dba56e244ed265c740234 100755 (executable)
@@ -25,7 +25,7 @@ ERROR: not-a-tuple-class class ;
     check-tuple-class "layout" word-prop ;
 
 : tuple-size ( tuple -- size )
-    1 slot layout-size ; inline
+    1 slot size>> ; inline
 
 : prepare-tuple>array ( tuple -- n tuple layout )
     check-tuple [ tuple-size ] [ ] [ 1 slot ] tri ;
@@ -38,7 +38,7 @@ PRIVATE>
 : tuple>array ( tuple -- array )
     prepare-tuple>array
     >r copy-tuple-slots r>
-    layout-class prefix ;
+    class>> prefix ;
 
 : tuple-slots ( tuple -- seq )
     prepare-tuple>array drop copy-tuple-slots ;
@@ -78,10 +78,10 @@ ERROR: bad-superclass class ;
     #! 5 slot == layout-echelon
     [
         [ 1 slot dup 5 slot ] %
-        dup tuple-layout layout-echelon ,
+        dup tuple-layout echelon>> ,
         [ fixnum>= ] %
         [
-            dup tuple-layout layout-echelon ,
+            dup tuple-layout echelon>> ,
             [ swap 4 slot array-nth ] %
             literalize ,
             [ eq? ] %
@@ -106,7 +106,7 @@ ERROR: bad-superclass class ;
     [ slot-names length ] map sum ;
 
 : generate-tuple-slots ( class slots -- slot-specs )
-    over superclass-size 2 + simple-slots ;
+    over superclass-size 2 + make-slots deprecated-slots ;
 
 : define-tuple-slots ( class -- )
     dup dup "slot-names" word-prop generate-tuple-slots
@@ -212,13 +212,14 @@ M: tuple-class define-tuple-class
 
 M: tuple-class reset-class
     [
-        dup "slot-names" word-prop [
+        dup "slots" word-prop [
+            name>>
             [ reader-word method forget ]
             [ writer-word method forget ] 2bi
         ] with each
     ] [
         [ call-next-method ]
-        [ { "layout" "slots" } reset-props ]
+        [ { "layout" "slots" "slot-names" } reset-props ]
         bi
     ] bi ;
 
index b612669b717dbb3cffd52b35b17bbf8726d28d8f..8ce3923019c859a6c2f8b57884bcd2fabec7fb4a 100755 (executable)
@@ -140,7 +140,7 @@ IN: combinators.tests
 [ "two" ] [ 2 case-test-1 ] unit-test
 
 ! Interpreted
-[ "two" ] [ 2 \ case-test-1 word-def call ] unit-test
+[ "two" ] [ 2 \ case-test-1 def>> call ] unit-test
 
 [ "x" case-test-1 ] must-fail
 
@@ -158,7 +158,7 @@ IN: combinators.tests
 [ 25 ] [ 5 case-test-2 ] unit-test
 
 ! Interpreted
-[ 25 ] [ 5 \ case-test-2 word-def call ] unit-test
+[ 25 ] [ 5 \ case-test-2 def>> call ] unit-test
 
 : case-test-3 ( obj -- obj' )
     {
@@ -288,7 +288,7 @@ IN: combinators.tests
 ] unit-test
 
 ! Interpreted
-[ "a hashtable" ] [ H{ } \ case-test-3 word-def call ] unit-test
+[ "a hashtable" ] [ H{ } \ case-test-3 def>> call ] unit-test
 
 [ 1 3 t ] [ { 1 3 2 } contiguous-range? ] unit-test
 [ f ] [ { 1 2 2 4 } contiguous-range? 2nip ] unit-test
index f6873429fe533769cbec0d903aee9efe8b603b0f..57b9ac8fc60cf9eb98827daced7fdae3cf244ee3 100755 (executable)
@@ -1,6 +1,6 @@
 ! Copyright (C) 2006, 2008 Slava Pestov.
 ! See http://factorcode.org/license.txt for BSD license.
-USING: arrays sequences sequences.private math.private
+USING: accessors arrays sequences sequences.private math.private
 kernel kernel.private math assocs quotations vectors
 hashtables sorting words sets math.order ;
 IN: combinators
@@ -45,7 +45,7 @@ ERROR: no-case ;
             dupd first dup word? [
                 execute
             ] [
-                dup wrapper? [ wrapped ] when
+                dup wrapper? [ wrapped>> ] when
             ] if =
         ] [ quotation? ] if
     ] find nip ;
index 0e5c96eca01fc4ad63e5efc0cf7614799a67b669..3582ee71a14075d99156c9532f45de6b1a002bf1 100755 (executable)
@@ -377,7 +377,7 @@ cell 8 = [
 [ 252 ] [ B{ 1 2 3 -4 5 } 3 [ { byte-array fixnum } declare alien-unsigned-1 ] compile-call ] unit-test
 [ -4 ] [ B{ 1 2 3 -4 5 } 3 [ { byte-array fixnum } declare alien-signed-1 ] compile-call ] unit-test
 
-: xword-def ( word -- def ) word-def [ { fixnum } declare ] prepend ;
+: xword-def ( word -- def ) def>> [ { fixnum } declare ] prepend ;
 
 [ -100 ] [ -100 <char> [ { byte-array } declare *char ] compile-call ] unit-test
 [ 156 ] [ -100 <uchar> [ { byte-array } declare *uchar ] compile-call ] unit-test
index b7abacc6e4c112d7921417fbc74e86a88702f858..38929d12824844a0b3f9c4e8afe490c2c3f822c6 100644 (file)
@@ -23,13 +23,13 @@ M: integer method-redefine-test 3 + ;
 : hey ( -- ) ;
 : there ( -- ) hey ;
 
-[ t ] [ \ hey compiled? ] unit-test
-[ t ] [ \ there compiled? ] unit-test
+[ t ] [ \ hey compiled>> ] unit-test
+[ t ] [ \ there compiled>> ] unit-test
 [ ] [ "IN: compiler.tests : hey ( -- ) 3 ;" eval ] unit-test
-[ f ] [ \ hey compiled? ] unit-test
-[ f ] [ \ there compiled? ] unit-test
+[ f ] [ \ hey compiled>> ] unit-test
+[ f ] [ \ there compiled>> ] unit-test
 [ ] [ "IN: compiler.tests : hey ( -- ) ;" eval ] unit-test
-[ t ] [ \ there compiled? ] unit-test
+[ t ] [ \ there compiled>> ] unit-test
 
 ! Just changing the stack effect didn't mark a word for recompilation
 DEFER: change-effect
@@ -44,24 +44,24 @@ DEFER: change-effect
 : bad ( -- ) good ;
 : ugly ( -- ) bad ;
 
-[ t ] [ \ good compiled? ] unit-test
-[ t ] [ \ bad compiled? ] unit-test
-[ t ] [ \ ugly compiled? ] unit-test
+[ t ] [ \ good compiled>> ] unit-test
+[ t ] [ \ bad compiled>> ] unit-test
+[ t ] [ \ ugly compiled>> ] unit-test
 
 [ f ] [ \ good compiled-usage assoc-empty? ] unit-test
 
 [ ] [ "IN: compiler.tests : good ( -- ) 3 ;" eval ] unit-test
 
-[ f ] [ \ good compiled? ] unit-test
-[ f ] [ \ bad compiled? ] unit-test
-[ f ] [ \ ugly compiled? ] unit-test
+[ f ] [ \ good compiled>> ] unit-test
+[ f ] [ \ bad compiled>> ] unit-test
+[ f ] [ \ ugly compiled>> ] unit-test
 
 [ t ] [ \ good compiled-usage assoc-empty? ] unit-test
 
 [ ] [ "IN: compiler.tests : good ( -- ) ;" eval ] unit-test
 
-[ t ] [ \ good compiled? ] unit-test
-[ t ] [ \ bad compiled? ] unit-test
-[ t ] [ \ ugly compiled? ] unit-test
+[ t ] [ \ good compiled>> ] unit-test
+[ t ] [ \ bad compiled>> ] unit-test
+[ t ] [ \ ugly compiled>> ] unit-test
 
 [ f ] [ \ good compiled-usage assoc-empty? ] unit-test
index 2b27b64b61f2daa9e44de679eddd7e53cd88c48f..9f839399a87b2c7edd5eaba28783790c5916ca87 100644 (file)
@@ -14,7 +14,7 @@ M: empty-mixin sheeple drop "wake up" ;
 : sheeple-test ( -- string ) { } sheeple ;
 
 [ "sheeple" ] [ sheeple-test ] unit-test
-[ t ] [ \ sheeple-test compiled? ] unit-test
+[ t ] [ \ sheeple-test compiled>> ] unit-test
 [ t ] [ object \ sheeple method \ sheeple-test "compiled-uses" word-prop key? ] unit-test
 [ f ] [ empty-mixin \ sheeple method \ sheeple-test "compiled-uses" word-prop key? ] unit-test
 
@@ -27,6 +27,6 @@ M: empty-mixin sheeple drop "wake up" ;
 [ ] [ [ array empty-mixin remove-mixin-instance ] with-compilation-unit ] unit-test
 
 [ "sheeple" ] [ sheeple-test ] unit-test
-[ t ] [ \ sheeple-test compiled? ] unit-test
+[ t ] [ \ sheeple-test compiled>> ] unit-test
 [ t ] [ object \ sheeple method \ sheeple-test "compiled-uses" word-prop key? ] unit-test
 [ f ] [ empty-mixin \ sheeple method \ sheeple-test "compiled-uses" word-prop key? ] unit-test
index 68c85d6d972be8c9e3afb8e5eed7ef591397e1f6..f3e29a62846ec532a2eb2cb3a3e953f8a1e0bb28 100755 (executable)
@@ -235,6 +235,6 @@ M: f single-combination-test-2 single-combination-test-4 ;
 10 [
     [ "compiler.tests.foo" forget-vocab ] with-compilation-unit
     [ t ] [
-        "USING: prettyprint words ; IN: compiler.tests.foo : (recursive) (  -- ) (recursive) (recursive) ; inline : recursive ( -- ) (recursive) ; \\ (recursive) compiled?" eval
+        "USING: prettyprint words ; IN: compiler.tests.foo : (recursive) (  -- ) (recursive) (recursive) ; inline : recursive ( -- ) (recursive) ; \\ (recursive) compiled>>" eval
     ] unit-test
 ] times
index 65ef68deb8c72966963dc759f03dac79141f946b..760a0036bcd93e6e4efe7fd0d5ad71e08ff9a69e 100755 (executable)
@@ -245,13 +245,13 @@ TUPLE: my-tuple ;
         [ dup float+ ]
     } cleave ;
 
-[ t ] [ \ float-spill-bug compiled? ] unit-test
+[ t ] [ \ float-spill-bug compiled>> ] unit-test
 
 ! Regression
 : dispatch-alignment-regression ( -- c )
     { tuple vector } 3 slot { word } declare
     dup 1 slot 0 fixnum-bitand { [ ] } dispatch ;
 
-[ t ] [ \ dispatch-alignment-regression compiled? ] unit-test
+[ t ] [ \ dispatch-alignment-regression compiled>> ] unit-test
 
 [ vector ] [ dispatch-alignment-regression ] unit-test
index b0c4948956b682cf72bb8dc122e493d4d4d6574f..d141bf68e3a7e79c0795e963d1b8acb46625dca1 100755 (executable)
@@ -1,7 +1,7 @@
 ! Copyright (C) 2008 Slava Pestov.
 ! See http://factorcode.org/license.txt for BSD license.
-USING: kernel continuations assocs namespaces sequences words
-vocabs definitions hashtables init sets ;
+USING: accessors kernel continuations assocs namespaces
+sequences words vocabs definitions hashtables init sets ;
 IN: compiler.units
 
 SYMBOL: old-definitions
@@ -54,7 +54,7 @@ GENERIC: definitions-changed ( assoc obj -- )
 
 : changed-vocabs ( assoc -- vocabs )
     [ drop word? ] assoc-filter
-    [ drop word-vocabulary dup [ vocab ] when dup ] assoc-map ;
+    [ drop vocabulary>> dup [ vocab ] when dup ] assoc-map ;
 
 : updated-definitions ( -- assoc )
     H{ } clone
index 27e1f02b916029f44c2fd675564d79162d57f50f..7ff71cdd2daa00efdaa6628882d05beb7fa2620c 100755 (executable)
@@ -66,7 +66,7 @@ IN: continuations.tests
 
 [ 1 3 2 ] [ bar ] unit-test
 
-[ t ] [ \ bar word-def "c" get innermost-frame-quot = ] unit-test
+[ t ] [ \ bar def>> "c" get innermost-frame-quot = ] unit-test
 
 [ 1 ] [ "c" get innermost-frame-scan ] unit-test
 
index 1b28f7262e30be42136309d01e9cebe93d890c24..61a27ec88f968d3d2de895e47344460b819774f1 100755 (executable)
@@ -438,13 +438,13 @@ IN: cpu.ppc.intrinsics
 } define-intrinsic
 
 \ <tuple> [
-    tuple "layout" get layout-size 2 + cells %allot
+    tuple "layout" get size>> 2 + cells %allot
     ! Store layout
     "layout" get 12 load-indirect
     12 11 cell STW
     ! Zero out the rest of the tuple
     f v>operand 12 LI
-    "layout" get layout-size [ 12 11 rot 2 + cells STW ] each
+    "layout" get size>> [ 12 11 rot 2 + cells STW ] each
     ! Store tagged ptr in reg
     "tuple" get tuple %store-tagged
 ] H{
index ebaa6056ffd822a054c77887bb4bf5bf4b9814fb..8a9a0c89ddb60ce04a8614fa9c468c6d9b9ee30d 100755 (executable)
@@ -178,7 +178,7 @@ stack-params "__stack_value" c-type set-c-type-reg-class >>
 
 : struct-types&offset ( struct-type -- pairs )
     struct-type-fields [
-        dup slot-spec-type swap slot-spec-offset 2array
+        [ type>> ] [ offset>> ] bi 2array
     ] map ;
 
 : split-struct ( pairs -- seq )
index 0ee8a0a1d980985e26a54ef40dc02c73d56043bf..8d537f66c44418eda3a03b7ac32e3e344bf4b58d 100755 (executable)
@@ -1,6 +1,6 @@
 ! Copyright (C) 2005, 2008 Slava Pestov.
 ! See http://factorcode.org/license.txt for BSD license.
-USING: alien alien.accessors arrays cpu.x86.assembler
+USING: accessors alien alien.accessors arrays cpu.x86.assembler
 cpu.x86.allot cpu.x86.architecture cpu.architecture kernel
 kernel.private math math.private namespaces quotations sequences
 words generic byte-arrays hashtables hashtables.private
@@ -290,12 +290,12 @@ IN: cpu.x86.intrinsics
 } define-intrinsic
 
 \ <tuple> [
-    tuple "layout" get layout-size 2 + cells [
+    tuple "layout" get size>> 2 + cells [
         ! Store layout
         "layout" get "scratch" get load-literal
         1 object@ "scratch" operand MOV
         ! Zero out the rest of the tuple
-        "layout" get layout-size [
+        "layout" get size>> [
             2 + object@ f v>operand MOV
         ] each
         ! Store tagged ptr in reg
index d7923ad595c30df3c4efe6870df72f5440734c77..6aee6fbcb231756a4bc58c208e35ac44b0a4bb63 100755 (executable)
@@ -24,7 +24,7 @@ TUPLE: effect in out terminated? ;
 
 GENERIC: (stack-picture) ( obj -- str )
 M: string (stack-picture) ;
-M: word (stack-picture) word-name ;
+M: word (stack-picture) name>> ;
 M: integer (stack-picture) drop "object" ;
 
 : stack-picture ( seq -- string )
@@ -46,7 +46,7 @@ M: symbol stack-effect drop (( -- symbol )) ;
 
 M: word stack-effect
     { "declared-effect" "inferred-effect" }
-    swap word-props [ at ] curry map [ ] find nip ;
+    swap props>> [ at ] curry map [ ] find nip ;
 
 M: effect clone
     [ in>> clone ] [ out>> clone ] bi <effect> ;
index a0961984ede64e2db8e898367122ab89972bccb2..058822bf2f5e48f70a7f51490636f8c7aebc4632 100755 (executable)
@@ -88,7 +88,7 @@ TUPLE: rel-fixup arg class type ;
 : rel-fixup ( arg class type -- ) \ rel-fixup boa , ;
 
 : push-4 ( value vector -- )
-    [ length ] [ B{ 0 0 0 0 } swap push-all ] [ underlying ] tri
+    [ length ] [ B{ 0 0 0 0 } swap push-all ] [ underlying>> ] tri
     swap set-alien-unsigned-4 ;
 
 M: rel-fixup fixup*
@@ -120,7 +120,7 @@ SYMBOL: literal-table
     >r add-literal r> rt-xt rel-fixup ;
 
 : rel-primitive ( word class -- )
-    >r word-def first r> rt-primitive rel-fixup ;
+    >r def>> first r> rt-primitive rel-fixup ;
 
 : rel-literal ( literal class -- )
     >r add-literal r> rt-literal rel-fixup ;
index 241858c95b81fb5219cb5d85ba55b0f58987bc8a..d369c047d999eeca0c1189ca949de4c0af4c3214 100755 (executable)
@@ -1,6 +1,6 @@
  ! Copyright (C) 2004, 2008 Slava Pestov.
 ! See http://factorcode.org/license.txt for BSD license.
-USING: arrays assocs classes combinators cpu.architecture
+USING: accessors arrays assocs classes combinators cpu.architecture
 effects generator.fixup generator.registers generic hashtables
 inference inference.backend inference.dataflow io kernel
 kernel.private layouts math namespaces optimizer
@@ -20,7 +20,7 @@ SYMBOL: compiled
     } cond ;
 
 : maybe-compile ( word -- )
-    dup compiled? [ drop ] [ queue-compile ] if ;
+    dup compiled>> [ drop ] [ queue-compile ] if ;
 
 SYMBOL: compiling-word
 
index 9d968a3a98427febe689ddb3f37d6f3804c5420a..5e76f584e3dd768b437695774638cbff2ff1fd7a 100755 (executable)
@@ -144,7 +144,7 @@ M: integer generic-forget-test-1 / ;
 
 [ t ] [
     \ / usage [ word? ] filter
-    [ word-name "generic-forget-test-1/integer" = ] contains?
+    [ name>> "generic-forget-test-1/integer" = ] contains?
 ] unit-test
 
 [ ] [
@@ -153,7 +153,7 @@ M: integer generic-forget-test-1 / ;
 
 [ f ] [
     \ / usage [ word? ] filter
-    [ word-name "generic-forget-test-1/integer" = ] contains?
+    [ name>> "generic-forget-test-1/integer" = ] contains?
 ] unit-test
 
 GENERIC: generic-forget-test-2 ( a b -- c )
@@ -162,7 +162,7 @@ M: sequence generic-forget-test-2 = ;
 
 [ t ] [
     \ = usage [ word? ] filter
-    [ word-name "generic-forget-test-2/sequence" = ] contains?
+    [ name>> "generic-forget-test-2/sequence" = ] contains?
 ] unit-test
 
 [ ] [
@@ -171,7 +171,7 @@ M: sequence generic-forget-test-2 = ;
 
 [ f ] [
     \ = usage [ word? ] filter
-    [ word-name "generic-forget-test-2/sequence" = ] contains?
+    [ name>> "generic-forget-test-2/sequence" = ] contains?
 ] unit-test
 
 GENERIC: generic-forget-test-3 ( a -- b )
index ca6949366aa6290587c4c801c111860bfcb3ef7f..47cc4c7a542b87037d8593ec5d04c3cb5c166c24 100755 (executable)
@@ -1,7 +1,7 @@
 ! Copyright (C) 2006, 2008 Slava Pestov.
 ! See http://factorcode.org/license.txt for BSD license.
-USING: words kernel sequences namespaces assocs hashtables
-definitions kernel.private classes classes.private
+USING: accessors words kernel sequences namespaces assocs
+hashtables definitions kernel.private classes classes.private
 classes.algebra quotations arrays vocabs effects combinators
 sets ;
 IN: generic
@@ -72,7 +72,7 @@ TUPLE: check-method class generic ;
     3tri ; inline
 
 : method-word-name ( class word -- string )
-    word-name "/" rot word-name 3append ;
+    [ name>> ] bi@ "=>" swap 3append ;
 
 PREDICATE: method-body < word
     "method-generic" word-prop >boolean ;
@@ -93,7 +93,7 @@ M: method-body crossref?
     check-method
     [ method-word-props ] 2keep
     method-word-name f <word>
-    [ set-word-props ] keep ;
+    swap >>props ;
 
 : with-implementors ( class generic quot -- )
     [ swap implementors-map get at ] dip call ; inline
index 2654490d88cba7e66a53cf2de2ce4e64834aea8d..cf2d50b6e27f7c9c81dc90b3dd7cc28261c649ee 100644 (file)
@@ -18,7 +18,7 @@ C: <trivial-tuple-dispatch-engine> trivial-tuple-dispatch-engine
 TUPLE: tuple-dispatch-engine echelons ;
 
 : push-echelon ( class method assoc -- )
-    >r swap dup "layout" word-prop layout-echelon r>
+    >r swap dup "layout" word-prop echelon>> r>
     [ ?set-at ] change-at ;
 
 : echelon-sort ( assoc -- assoc' )
@@ -54,7 +54,7 @@ M: trivial-tuple-dispatch-engine engine>quot
     ] [ ] make ;
 
 : engine-word-name ( -- string )
-    generic get word-name "/tuple-dispatch-engine" append ;
+    generic get name>> "/tuple-dispatch-engine" append ;
 
 PREDICATE: engine-word < word
     "tuple-dispatch-generic" word-prop generic? ;
index 93956fec00bf234a0b472c0e0500c1a1a5e57ae0..9cee497d6d7d2a041b081926573eed55445ade90 100644 (file)
@@ -287,7 +287,7 @@ M: sbuf no-stack-effect-decl ;
 
 [ ] [ \ no-stack-effect-decl see ] unit-test
 
-[ ] [ \ no-stack-effect-decl word-def . ] unit-test
+[ ] [ \ no-stack-effect-decl def>> . ] unit-test
 
 ! Cross-referencing with generic words
 TUPLE: xref-tuple-1 ;
index 9de3c8ab24f71be5306b002b057cf20736022fcd..9f950aa36c9fc3a938b268d82cd2a8e6d3107c55 100755 (executable)
@@ -7,31 +7,17 @@ ARTICLE: "growable" "Resizable sequence implementation"
 $nl
 "There is a resizable sequence mixin:"
 { $subsection growable }
-"This mixin implements the sequence protocol in terms of a growable protocol:"
-{ $subsection underlying }
-{ $subsection set-underlying }
-{ $subsection set-fill }
+"This mixin implements the sequence protocol by assuming the object has two specific slots:"
+{ $list
+    { { $snippet "length" } " - the fill pointer (number of occupied elements in the underlying storage)" }
+    { { $snippet "underlying" } " - the underlying storage" }
+}
 "The underlying sequence must implement a generic word:"
 { $subsection resize }
-{ $link "vectors" } " and " { $link "sbufs" } " are implemented using the resizable sequence facility." ;
+{ $link "vectors" } ", " { $link "byte-vectors" } " and " { $link "sbufs" } " are implemented using the resizable sequence facility." ;
 
 ABOUT: "growable"
 
-HELP: set-fill
-{ $values { "n" "a new fill pointer" } { "seq" growable } }
-{ $contract "Sets the fill pointer (number of occupied elements in the underlying storage) of a resizable sequence." }
-{ $side-effects "seq" }
-{ $warning "This word is not safe. Changing the fill pointer to a negative value, or a value higher than the underlying sequence length can lead to memory corruption. User code should use " { $link set-length } " instead." } ;
-
-HELP: underlying
-{ $values { "seq" growable } { "underlying" "the underlying sequence" } }
-{ $contract "Outputs the underlying storage of a resizable sequence." } ;
-
-HELP: set-underlying
-{ $values { "underlying" sequence } { "seq" growable } }
-{ $contract "Modifies the underlying storage of a resizable sequence." }
-{ $warning "This word is not safe. Setting an underlying sequence shorter than the fill pointer can lead to memory corruption." } ;
-
 HELP: capacity
 { $values { "seq" "a vector or string buffer" } { "n" "the capacity of the sequence" } }
 { $description "Outputs the number of elements the sequence can hold without growing." } ;
index d660610e3fbac9bcd87aeddfef3828ac24e4cfb3..559a3f192a9fdbe96d4a6f88d8393b6210b7682b 100644 (file)
@@ -1,24 +1,24 @@
-! Copyright (C) 2005, 2007 Slava Pestov.
+! Copyright (C) 2005, 2008 Slava Pestov.
 ! See http://factorcode.org/license.txt for BSD license.
 
 ! Some low-level code used by vectors and string buffers.
-USING: kernel kernel.private math math.private
+USING: accessors kernel kernel.private math math.private
 sequences sequences.private ;
 IN: growable
 
 MIXIN: growable
-GENERIC: underlying ( seq -- underlying )
-GENERIC: set-underlying ( underlying seq -- )
-GENERIC: set-fill ( n seq -- )
 
-M: growable nth-unsafe underlying nth-unsafe ;
+SLOT: length
+SLOT: underlying
 
-M: growable set-nth-unsafe underlying set-nth-unsafe ;
+M: growable length length>> ;
+M: growable nth-unsafe underlying>> nth-unsafe ;
+M: growable set-nth-unsafe underlying>> set-nth-unsafe ;
 
-: capacity ( seq -- n ) underlying length ; inline
+: capacity ( seq -- n ) underlying>> length ; inline
 
 : expand ( len seq -- )
-    [ underlying resize ] keep set-underlying ; inline
+    [ resize ] change-underlying drop ; inline
 
 : contract ( len seq -- )
     [ length ] keep
@@ -35,7 +35,7 @@ M: growable set-length ( n seq -- )
     ] [
         2dup capacity > [ 2dup expand ] when
     ] if
-    >r >fixnum r> set-fill ;
+    swap >fixnum >>length drop ;
 
 : new-size ( old -- new ) 1+ 3 * ; inline
 
@@ -44,20 +44,19 @@ M: growable set-length ( n seq -- )
     2dup length >= [
         2dup capacity >= [ over new-size over expand ] when
         >r >fixnum r>
-        2dup >r 1 fixnum+fast r> set-fill
+        2dup swap 1 fixnum+fast >>length drop
     ] [
         >r >fixnum r>
     ] if ; inline
 
 M: growable set-nth ensure set-nth-unsafe ;
 
-M: growable clone ( seq -- newseq )
-    (clone) dup underlying clone over set-underlying ;
+M: growable clone (clone) [ clone ] change-underlying ;
 
 M: growable lengthen ( n seq -- )
     2dup length > [
         2dup capacity > [ over new-size over expand ] when
-        2dup >r >fixnum r> set-fill
+        2dup swap >fixnum >>length drop
     ] when 2drop ;
 
 INSTANCE: growable sequence
index e3b21e629e3b11109907b6c8010cdfba8e581725..3cd9ee23af7c1286307b6b662c31ef0390591d29 100755 (executable)
@@ -8,7 +8,7 @@ ARTICLE: "hashtables.private" "Hashtable implementation details"
 $nl
 "There are two special objects: the " { $link ((tombstone)) } " marker and the " { $link ((empty)) } " marker. Neither of these markers can be used as hashtable keys."
 $nl
-"The " { $link hash-count } " slot is the number of entries including deleted entries, and " { $link hash-deleted } " is the number of deleted entries."
+"The " { $snippet "count" } " slot is the number of entries including deleted entries, and " { $snippet "deleted" } " is the number of deleted entries."
 { $subsection <hash-array> }
 { $subsection set-nth-pair }
 "If a hashtable's keys are mutated, or if hashing algorithms change, hashtables can be rehashed:"
index a1dba07fb0dc57712f8f6db44a894d612b6a3241..e991be5ab3a73c5f86960104c0bc6893f87708d2 100755 (executable)
@@ -1,9 +1,14 @@
 ! Copyright (C) 2005, 2008 Slava Pestov.
 ! See http://factorcode.org/license.txt for BSD license.
-USING: arrays kernel kernel.private slots.private math assocs
-math.private sequences sequences.private vectors grouping ;
+USING: accessors arrays kernel kernel.private slots.private math
+assocs math.private sequences sequences.private vectors grouping ;
 IN: hashtables
 
+TUPLE: hashtable
+{ "count" array-capacity }
+{ "deleted" array-capacity }
+{ "array" array } ;
+
 <PRIVATE
 
 : wrap ( i array -- n )
@@ -23,16 +28,16 @@ IN: hashtables
     ] if ; inline
 
 : key@ ( key hash -- array n ? )
-    hash-array 2dup hash@ (key@) ; inline
+    array>> 2dup hash@ (key@) ; inline
 
 : <hash-array> ( n -- array )
     1+ next-power-of-2 4 * ((empty)) <array> ; inline
 
 : init-hash ( hash -- )
-    0 over set-hash-count 0 swap set-hash-deleted ;
+    0 >>count 0 >>deleted drop ; inline
 
 : reset-hash ( n hash -- )
-    swap <hash-array> over set-hash-array init-hash ;
+    swap <hash-array> >>array init-hash ;
 
 : (new-key@) ( key keys i -- keys n empty? )
     3dup swap array-nth dup ((empty)) eq? [
@@ -46,17 +51,17 @@ IN: hashtables
     ] if ; inline
 
 : new-key@ ( key hash -- array n empty? )
-    hash-array 2dup hash@ (new-key@) ; inline
+    array>> 2dup hash@ (new-key@) ; inline
 
 : set-nth-pair ( value key seq n -- )
     2 fixnum+fast [ set-slot ] 2keep
     1 fixnum+fast set-slot ; inline
 
 : hash-count+ ( hash -- )
-    dup hash-count 1+ swap set-hash-count ; inline
+    [ 1+ ] change-count drop ; inline
 
 : hash-deleted+ ( hash -- )
-    dup hash-deleted 1+ swap set-hash-deleted ; inline
+    [ 1+ ] change-deleted drop ; inline
 
 : (set-hash) ( value key hash -- new? )
     2dup new-key@
@@ -67,11 +72,11 @@ IN: hashtables
     swap [ swapd (set-hash) drop ] curry assoc-each ;
 
 : hash-large? ( hash -- ? )
-    [ hash-count 3 fixnum*fast  ]
-    [ hash-array array-capacity ] bi > ;
+    [ count>> 3 fixnum*fast  ]
+    [ array>> array-capacity ] bi > ;
 
 : hash-stale? ( hash -- ? )
-    [ hash-deleted 10 fixnum*fast ] [ hash-count ] bi fixnum> ;
+    [ deleted>> 10 fixnum*fast ] [ count>> ] bi fixnum> ;
 
 : grow-hash ( hash -- )
     [ dup >alist swap assoc-size 1+ ] keep
@@ -98,7 +103,7 @@ M: hashtable at* ( key hash -- value ? )
     key@ [ 3 fixnum+fast slot t ] [ 2drop f f ] if ;
 
 M: hashtable clear-assoc ( hash -- )
-    dup init-hash hash-array [ drop ((empty)) ] change-each ;
+    [ init-hash ] [ array>> [ drop ((empty)) ] change-each ] bi ;
 
 M: hashtable delete-at ( key hash -- )
     tuck key@ [
@@ -109,14 +114,12 @@ M: hashtable delete-at ( key hash -- )
     ] if ;
 
 M: hashtable assoc-size ( hash -- n )
-    dup hash-count swap hash-deleted - ;
+    [ count>> ] [ deleted>> ] bi - ;
 
 : rehash ( hash -- )
-    dup >alist
-    over hash-array length ((empty)) <array> pick set-hash-array
-    0 pick set-hash-count
-    0 pick set-hash-deleted
-    (rehash) ;
+    dup >alist >r
+    dup clear-assoc
+    r> (rehash) ;
 
 M: hashtable set-at ( value key hash -- )
     dup >r (set-hash) [ r> ?grow-hash ] [ r> drop ] if ;
@@ -125,10 +128,10 @@ M: hashtable set-at ( value key hash -- )
     2 <hashtable> [ set-at ] keep ;
 
 M: hashtable >alist
-    hash-array 2 <groups> [ first tombstone? not ] filter ;
+    array>> 2 <groups> [ first tombstone? not ] filter ;
 
 M: hashtable clone
-    (clone) dup hash-array clone over set-hash-array ;
+    (clone) [ clone ] change-array ;
 
 M: hashtable equal?
     over hashtable? [
index 59fbd289db108be92a827e8ff5b695b92eaf3f64..b4a533597cecb0726724938ccd3d4cf8de7fac5c 100755 (executable)
@@ -111,7 +111,7 @@ GENERIC: apply-object ( obj -- )
 M: object apply-object apply-literal ;
 
 M: wrapper apply-object
-    wrapped dup +called+ depends-on apply-literal ;
+    wrapped>> dup +called+ depends-on apply-literal ;
 
 : terminate ( -- )
     terminated? on #terminate node, ;
@@ -400,7 +400,7 @@ TUPLE: missing-effect word ;
         { [ dup inline? ] [ drop f ] }
         { [ dup deferred? ] [ drop f ] }
         { [ dup crossref? not ] [ drop f ] }
-        [ word-def [ [ word? ] [ primitive? not ] bi and ] contains? ]
+        [ def>> [ [ word? ] [ primitive? not ] bi and ] contains? ]
     } cond ;
 
 : ?missing-effect ( word -- )
@@ -429,7 +429,7 @@ TUPLE: missing-effect word ;
         [
             init-inference
             dependencies off
-            dup word-def over dup infer-quot-recursive
+            dup def>> over dup infer-quot-recursive
             end-infer
             finish-word
             current-effect
@@ -492,7 +492,7 @@ M: #return collect-label-info*
 : inline-block ( word -- #label data )
     [
         copy-inference nest-node
-        [ word-def ] [ <inlined-block> ] bi
+        [ def>> ] [ <inlined-block> ] bi
         [ infer-quot-recursive ] 2keep
         #label unnest-node
         dup collect-label-info
index 770763bfb6b78dd88f6128dff9ace5bcf71f3fdc..39b33d4b63d2ae8665cc7a00e5940b08862c91a7 100755 (executable)
@@ -159,7 +159,7 @@ DEFER: blah
         [ dup V{ } eq? [ foo ] when ] dup second dup push define
     ] with-compilation-unit
 
-    \ blah word-def dataflow optimize drop
+    \ blah def>> dataflow optimize drop
 ] unit-test
 
 GENERIC: detect-fx ( n -- n )
index c9c3f1de6bacf858cd4e00716c886927556bbf73..12efcbd509aee7fe137352cfe42d0d34c0fda415 100755 (executable)
@@ -271,7 +271,7 @@ DEFER: #1
 : #4 ( a -- ) dup [ drop ] [ dup #4 dup #3 call ] if ;
 : #1 ( a -- ) dup [ dup #4 dup #3 ] [ ] if drop ;
 
-[ \ #4 word-def infer ] must-fail
+[ \ #4 def>> infer ] must-fail
 [ [ #1 ] infer ] must-fail
 
 ! Similar
index 3282cbb5e22ac6ea1a324d7a8b1d332d355e465c..3a54ccf975239b397dda092523368d4085f1da01 100755 (executable)
@@ -1,6 +1,6 @@
 ! Copyright (C) 2004, 2008 Slava Pestov.
 ! See http://factorcode.org/license.txt for BSD license.
-USING: alien alien.accessors arrays bit-arrays byte-arrays
+USING: accessors alien alien.accessors arrays bit-arrays byte-arrays
 classes sequences.private continuations.private effects
 float-arrays generic hashtables hashtables.private
 inference.state inference.backend inference.dataflow io
@@ -137,7 +137,7 @@ M: object infer-call
 ! Variadic tuple constructor
 \ <tuple-boa> [
     \ <tuple-boa>
-    peek-d value-literal layout-size { tuple } <effect>
+    peek-d value-literal size>> { tuple } <effect>
     make-call-node
 ] "infer" set-word-prop
 
index 7f5f8035fbd833686c6c5479d5a801ab352abf38..a102063c93d29c4f243f1ebed1218f053d80b5e0 100755 (executable)
@@ -31,19 +31,19 @@ C: <color> color
 
 [ 1 2 3 ] [ 1 2 3 <color> cleave-test ] unit-test
 
-[ 1 2 3 ] [ 1 2 3 <color> \ cleave-test word-def call ] unit-test
+[ 1 2 3 ] [ 1 2 3 <color> \ cleave-test def>> call ] unit-test
 
 : 2cleave-test ( a b -- c d e ) { [ 2array ] [ + ] [ - ] } 2cleave ;
 
 [ { 1 2 } 3 -1 ] [ 1 2 2cleave-test ] unit-test
 
-[ { 1 2 } 3 -1 ] [ 1 2 \ 2cleave-test word-def call ] unit-test
+[ { 1 2 } 3 -1 ] [ 1 2 \ 2cleave-test def>> call ] unit-test
 
 : spread-test ( a b c -- d e f ) { [ sq ] [ neg ] [ recip ] } spread ;
 
 [ 16 -3 1/6 ] [ 4 3 6 spread-test ] unit-test
 
-[ 16 -3 1/6 ] [ 4 3 6 \ spread-test word-def call ] unit-test
+[ 16 -3 1/6 ] [ 4 3 6 \ spread-test def>> call ] unit-test
 
 [ fixnum instance? ] must-infer
 
index d32f1c90cfbd89e095e3ba9a33bf180dee4a0f58..07c189cea0f3f075577387904cb03a5c059dd70f 100755 (executable)
@@ -1,6 +1,6 @@
 ! Copyright (C) 2005, 2008 Slava Pestov.
 ! See http://factorcode.org/license.txt for BSD license.
-USING: arrays generic hashtables io kernel assocs math
+USING: accessors arrays generic hashtables io kernel assocs math
 namespaces prettyprint sequences strings io.styles vectors words
 quotations mirrors splitting math.parser classes vocabs refs
 sets sorting ;
@@ -9,7 +9,7 @@ IN: inspector
 GENERIC: summary ( object -- string )
 
 : object-summary ( object -- string )
-    class word-name " instance" append ;
+    class name>> " instance" append ;
 
 M: object summary object-summary ;
 
@@ -24,7 +24,7 @@ M: word summary synopsis ;
 
 M: sequence summary
     [
-        dup class word-name %
+        dup class name>> %
         " with " %
         length #
         " elements" %
@@ -32,7 +32,7 @@ M: sequence summary
 
 M: assoc summary
     [
-        dup class word-name %
+        dup class name>> %
         " with " %
         assoc-size #
         " entries" %
index d2b092abe8d3c0fbe7aff5de42a5dadf4b228096..607076b80989f43f98a30e40995c92ffd31b3498 100755 (executable)
@@ -1,8 +1,8 @@
-! Copyright (C) 2003, 2007 Slava Pestov.
+! Copyright (C) 2003, 2008 Slava Pestov.
 ! See http://factorcode.org/license.txt for BSD license.
-USING: io kernel math namespaces sequences sbufs strings
-generic splitting growable continuations destructors
-io.streams.plain io.encodings math.order ;
+USING: accessors io kernel math namespaces sequences sbufs
+strings generic splitting continuations destructors
+io.streams.plain io.encodings math.order growable ;
 IN: io.streams.string
 
 M: growable dispose drop ;
@@ -21,7 +21,7 @@ M: growable stream-flush drop ;
 M: growable stream-read1 dup empty? [ drop f ] [ pop ] if ;
 
 : harden-as ( seq growble-exemplar -- newseq )
-    underlying like ;
+    underlying>> like ;
 
 : growable-read-until ( growable n -- str )
     >fixnum dupd tail-slice swap harden-as dup reverse-here ;
index 5481560f943a66100da2192a2c8224dfb06137b4..43d93c86e70043c7c5d98181d3c80463e54849e8 100644 (file)
@@ -94,7 +94,7 @@ HELP: font-style
 { $description "Character style. Font style, one of " { $link plain } ", " { $link bold } ", " { $link italic } ", or " { $link bold-italic } "." }
 { $examples
     "This example outputs text in all three styles:"
-    { $code "{ plain bold italic bold-italic }\n[ [ word-name ] keep font-style associate format nl ] each" }
+    { $code "{ plain bold italic bold-italic }\n[ [ name>> ] keep font-style associate format nl ] each" }
 }  ;
 
 HELP: presented
index 1a7d1de47c0242a140aa849d311175f7e3987a02..aa335aed9056d15b936968e9351d728fdfeb9660 100755 (executable)
@@ -197,8 +197,16 @@ M: callstack clone (clone) ;
 PRIVATE>
 
 ! Deprecated
+GENERIC: delegate ( obj -- delegate )
+
+M: tuple delegate 2 slot ;
+
 M: object delegate drop f ;
 
+GENERIC: set-delegate ( delegate tuple -- )
+
+M: tuple set-delegate 2 set-slot ;
+
 GENERIC# get-slots 1 ( tuple slots -- ... )
 
 GENERIC# set-slots 1 ( ... tuple slots -- )
index 3d65fb95ca7cff538b73cf5cad7ceedb33654ec4..f791cc7391ba6f42bdaa8337e5146f2b4c0c4d82 100644 (file)
@@ -71,7 +71,7 @@ ERROR: unexpected want got ;
 GENERIC: expected>string ( obj -- str )
 
 M: f expected>string drop "end of input" ;
-M: word expected>string word-name ;
+M: word expected>string name>> ;
 M: string expected>string ;
 
 M: unexpected error.
index 70533ac33f3cd22b679926bd95697a236fc38064..c1b38011fead518f91f85a2426f25619c6b7db17 100755 (executable)
@@ -14,4 +14,4 @@ IN: math.bitfields.tests
 
 [ 3 ] [ foo ] unit-test
 [ 3 ] [ { a b } flags ] unit-test
-[ t ] [ \ foo compiled? ] unit-test
+[ t ] [ \ foo compiled>> ] unit-test
index b15f09e49d44ecfd79b5365758326a242cb16e96..f75a63eefc3d77c40f80495cc709296fad6eb7c5 100755 (executable)
@@ -302,11 +302,11 @@ HELP: fp-nan?
 { $values { "x" real } { "?" "a boolean" } }
 { $description "Tests if " { $snippet "x" } " is an IEEE Not-a-Number value. While " { $snippet "x" } " can be any real number, this word will only ever yield true if " { $snippet "x" } " is a " { $link float } "." } ;
 
-HELP: real-part ( z -- x )
+HELP: real-part
 { $values { "z" number } { "x" real } }
 { $description "Outputs the real part of a complex number. This acts as the identity on real numbers." } ;
 
-HELP: imaginary-part ( z -- y )
+HELP: imaginary-part
 { $values { "z" number } { "y" real } }
 { $description "Outputs the imaginary part of a complex number. This outputs zero for real numbers." } ;
 
index 1dfbf1fc3eb08ff688e7715e04443b98a9955cb0..859d0f6f29717b91e0e4d68f4c28cfb1cee92315 100755 (executable)
@@ -8,6 +8,12 @@ GENERIC: >bignum ( x -- n ) foldable
 GENERIC: >integer ( x -- n ) foldable
 GENERIC: >float ( x -- y ) foldable
 
+GENERIC: numerator ( a/b -- a )
+GENERIC: denominator ( a/b -- b )
+
+GENERIC: real-part ( z -- x )
+GENERIC: imaginary-part ( z -- y )
+
 MATH: number= ( x y -- ? ) foldable
 
 M: object number= 2drop f ;
index 607ba1542ffee8dae713c9409c752509b80e805b..b96d6bf8b5a29cfb6d946c832a9c80a9c8a377b5 100755 (executable)
@@ -26,10 +26,10 @@ M: mirror at*
 
 M: mirror set-at ( val key mirror -- )
     [ nip object>> ] [ drop ] [ slots>> slot-named ] 2tri dup [
-        dup writer>> [
-            nip offset>> set-slot
-        ] [
+        dup read-only>> [
             drop immutable-slot
+        ] [
+            nip offset>> set-slot
         ] if
     ] [
         drop no-such-slot
index f49ab7fcba8bc57c559a38e28153692c9acdce10..87f95afdedfd1ae455b5f9d0cc8d2a876fc1f5f6 100755 (executable)
@@ -91,7 +91,7 @@ namespaces assocs kernel sequences math tools.test words sets ;
     {
         [ swapd * -rot p2 +@ ]
         [ 2swap [ swapd * -rot p2 +@ ] 2keep ]
-    } \ regression-1 word-def kill-set [ member? ] curry map
+    } \ regression-1 def>> kill-set [ member? ] curry map
 ] unit-test
 
 : regression-2 ( x y -- x.y )
@@ -121,6 +121,6 @@ namespaces assocs kernel sequences math tools.test words sets ;
             ] with assoc-each
         ]
     }
-    \ regression-2 word-def kill-set
+    \ regression-2 def>> kill-set
     [ member? ] curry map
 ] unit-test
index 9e8f805acf0217a17a1bd99f14c65b471e8fb755..9438f9c4aa1ecbe9f5b7edffe142e42b48d78b44 100755 (executable)
@@ -1,6 +1,6 @@
 ! Copyright (C) 2004, 2008 Slava Pestov.
 ! See http://factorcode.org/license.txt for BSD license.
-USING: arrays generic assocs inference inference.class
+USING: accessors arrays generic assocs inference inference.class
 inference.dataflow inference.backend inference.state io kernel
 math namespaces sequences vectors words quotations hashtables
 combinators classes classes.algebra generic.math
@@ -37,7 +37,7 @@ DEFER: (flat-length)
         ! not inline
         { [ dup inline? not ] [ drop 1 ] }
         ! inline
-        [ dup dup set word-def (flat-length) ]
+        [ dup dup set def>> (flat-length) ]
     } cond ;
 
 : (flat-length) ( seq -- n )
@@ -51,7 +51,7 @@ DEFER: (flat-length)
     ] map sum ;
 
 : flat-length ( seq -- n )
-    [ word-def (flat-length) ] with-scope ;
+    [ def>> (flat-length) ] with-scope ;
 
 ! Single dispatch method inlining optimization
 : node-class# ( node n -- class )
@@ -201,7 +201,7 @@ DEFER: (flat-length)
 
 : splice-word-def ( #call word -- node )
     dup +inlined+ depends-on
-    dup word-def swap 1array splice-quot ;
+    dup def>> swap 1array splice-quot ;
 
 : optimistic-inline ( #call -- node )
     dup node-param over node-history memq? [
index d69a2f94bc64a498ea4802eb601deeb896216f89..0aadd05e8cdb749bad79030be1d5dd5bfea82cdc 100755 (executable)
@@ -1,7 +1,7 @@
 ! Copyright (C) 2005, 2008 Slava Pestov.
 ! See http://factorcode.org/license.txt for BSD license.
 IN: optimizer.known-words
-USING: alien arrays generic hashtables inference.dataflow
+USING: accessors alien arrays generic hashtables inference.dataflow
 inference.class kernel assocs math math.order math.private
 kernel.private sequences words parser vectors strings sbufs io
 namespaces assocs quotations sequences.private io.binary
@@ -14,7 +14,7 @@ sequences.private combinators byte-arrays byte-vectors ;
 { <tuple> <tuple-boa> } [
     [
         dup node-in-d peek node-literal
-        dup tuple-layout? [ layout-class ] [ drop tuple ] if
+        dup tuple-layout? [ class>> ] [ drop tuple ] if
         1array f
     ] "output-classes" set-word-prop
 ] each
index 72e64d5b95e22e555ba2583eb80f4815e1e3121e..b7a3ff28e71d64daf3927062fefc66338cd304cd 100755 (executable)
@@ -256,7 +256,7 @@ optimizer.math.partial generic.standard system accessors ;
     alien-signed-8
     alien-unsigned-8
 } [
-    dup word-name {
+    dup name>> {
         {
             [ "alien-signed-" ?head ]
             [ string>number 8 * 1- 2^ dup neg swap 1- [a,b] ]
index 30a726e0220d7f1463cfd70072f85f1fcb1dfbc9..4f9bfaef12af4f0941f65093887697d15da0b68b 100644 (file)
@@ -1,6 +1,6 @@
 ! Copyright (C) 2008 Slava Pestov.
 ! See http://factorcode.org/license.txt for BSD license.
-USING: kernel kernel.private math math.private words
+USING: accessors kernel kernel.private math math.private words
 sequences parser namespaces assocs quotations arrays
 generic generic.math hashtables effects ;
 IN: optimizer.math.partial
@@ -40,16 +40,16 @@ PREDICATE: math-partial < word
 <<
 : integer-op-combinator ( triple -- word )
     [
-        [ second word-name % "-" % ]
-        [ third word-name % "-op" % ]
+        [ second name>> % "-" % ]
+        [ third name>> % "-op" % ]
         bi
     ] "" make in get lookup ;
 
 : integer-op-word ( triple fix-word big-word -- word )
     [
         drop
-        word-name "fast" tail? >r
-        [ "-" % ] [ word-name % ] interleave
+        name>> "fast" tail? >r
+        [ "-" % ] [ name>> % ] interleave
         r> [ "-fast" % ] when
     ] "" make in get create ;
 
@@ -86,7 +86,7 @@ PREDICATE: math-partial < word
     { fixnum bignum float }
     [ [ dup 3array ] [ swap method ] 2bi ] with { } map>assoc
     [ nip ] assoc-filter
-    [ word-def peek ] assoc-map % ;
+    [ def>> peek ] assoc-map % ;
 
 SYMBOL: math-ops
 
index 7032e58b3fa742a11ec665d0a93a70f5ec076dc2..8b759ef88394b82fc3a022b5bb7d74449cae68b9 100755 (executable)
@@ -17,7 +17,7 @@ IN: optimizer.tests
 GENERIC: xyz ( obj -- obj )
 M: array xyz xyz ;
 
-[ t ] [ \ xyz compiled? ] unit-test
+[ t ] [ \ xyz compiled>> ] unit-test
 
 ! Test predicate inlining
 : pred-test-1
@@ -102,7 +102,7 @@ TUPLE: pred-test ;
 ! regression
 GENERIC: void-generic ( obj -- * )
 : breakage ( -- * ) "hi" void-generic ;
-[ t ] [ \ breakage compiled? ] unit-test
+[ t ] [ \ breakage compiled>> ] unit-test
 [ breakage ] must-fail
 
 ! regression
@@ -133,7 +133,7 @@ GENERIC: void-generic ( obj -- * )
 ! compiling <tuple> with a non-literal class failed
 : <tuple>-regression ( class -- tuple ) <tuple> ;
 
-[ t ] [ \ <tuple>-regression compiled? ] unit-test
+[ t ] [ \ <tuple>-regression compiled>> ] unit-test
 
 GENERIC: foozul ( a -- b )
 M: reversed foozul ;
@@ -247,7 +247,7 @@ TUPLE: silly-tuple a b ;
 : node-successor-f-bug ( x -- * )
     [ 3 throw ] [ empty-compound ] compose [ 3 throw ] if ;
 
-[ t ] [ \ node-successor-f-bug compiled? ] unit-test
+[ t ] [ \ node-successor-f-bug compiled>> ] unit-test
 
 [ ] [ [ new ] dataflow optimize drop ] unit-test
 
@@ -271,7 +271,7 @@ TUPLE: silly-tuple a b ;
         ] if
     ] if ;
 
-[ t ] [ \ lift-throw-tail-regression compiled? ] unit-test
+[ t ] [ \ lift-throw-tail-regression compiled>> ] unit-test
 [ 3 "an integer" ] [ 3 lift-throw-tail-regression ] unit-test
 [ "hi" "a string" ] [ "hi" lift-throw-tail-regression ] unit-test
 
@@ -309,7 +309,7 @@ M: integer generic-inline-test ;
 
 ! Inlining all of the above should only take two passes
 [ { t f } ] [
-    \ generic-inline-test-1 word-def dataflow
+    \ generic-inline-test-1 def>> dataflow
     [ optimize-1 , optimize-1 , drop ] { } make
 ] unit-test
 
@@ -322,7 +322,7 @@ HINTS: recursive-inline-hang array ;
 : recursive-inline-hang-1 ( -- a )
     { } recursive-inline-hang ;
 
-[ t ] [ \ recursive-inline-hang-1 compiled? ] unit-test
+[ t ] [ \ recursive-inline-hang-1 compiled>> ] unit-test
 
 DEFER: recursive-inline-hang-3
 
index c3702e9805f2529cb4b7ef31398df7de209d73df..90ae7fc6f9b7a54bd9520c59002f883b1799c6d3 100755 (executable)
@@ -1,8 +1,8 @@
 ! Copyright (C) 2006, 2008 Slava Pestov.\r
 ! See http://factorcode.org/license.txt for BSD license.\r
-USING: arrays generic hashtables kernel kernel.private math\r
-namespaces sequences vectors words strings layouts combinators\r
-sequences.private classes generic.standard\r
+USING: accessors arrays generic hashtables kernel kernel.private\r
+math namespaces sequences vectors words strings layouts\r
+combinators sequences.private classes generic.standard\r
 generic.standard.engines assocs ;\r
 IN: optimizer.specializers\r
 \r
@@ -51,7 +51,7 @@ IN: optimizer.specializers
     ] [ drop f ] if ;\r
 \r
 : specialized-def ( word -- quot )\r
-    dup word-def swap {\r
+    dup def>> swap {\r
         { [ dup standard-method? ] [ specialize-method ] }\r
         {\r
             [ dup "specializer" word-prop ]\r
index 601245c463ab07b9c8a186d22da65f9f438d790b..5ea19ab880f63070e768ad6152976b0f3bc1f54b 100755 (executable)
@@ -81,7 +81,7 @@ M: no-word-error summary
     dup no-word-error boa
     swap words-named [ forward-reference? not ] filter
     word-restarts throw-restarts
-    dup word-vocabulary (use+) ;
+    dup vocabulary>> (use+) ;
 
 : check-forward ( str word -- word/f )
     dup forward-reference? [
index 3df408cb1064c8200ffa9a6797d82d9b0f17599a..83e40d147f0a629fd25f18c473f5d6b9c5ea0df4 100755 (executable)
@@ -1,6 +1,6 @@
 ! Copyright (C) 2003, 2008 Slava Pestov.
 ! See http://factorcode.org/license.txt for BSD license.
-USING: arrays byte-arrays byte-vectors bit-arrays generic
+USING: accessors arrays byte-arrays byte-vectors bit-arrays generic
 hashtables io assocs kernel math namespaces sequences strings
 sbufs io.styles vectors words prettyprint.config
 prettyprint.sections quotations io io.files math.parser effects
@@ -37,7 +37,7 @@ M: effect pprint* effect>string "(" swap ")" 3append text ;
     ] keep ;
 
 : word-name* ( word -- str )
-    word-name "( no name )" or ;
+    name>> "( no name )" or ;
 
 : pprint-word ( word -- )
     dup record-vocab
@@ -117,7 +117,7 @@ M: pathname pprint*
 : check-recursion ( obj quot -- )
     nesting-limit? [
         drop
-        "~" over class word-name "~" 3append
+        "~" over class name>> "~" 3append
         swap present-text
     ] [
         over recursion-check get memq? [
@@ -166,7 +166,7 @@ M: curry >pprint-sequence ;
 M: compose >pprint-sequence ;
 M: hashtable >pprint-sequence >alist ;
 M: tuple >pprint-sequence tuple>array ;
-M: wrapper >pprint-sequence wrapped 1array ;
+M: wrapper >pprint-sequence wrapped>> 1array ;
 M: callstack >pprint-sequence callstack>array ;
 
 GENERIC: pprint-narrow? ( obj -- ? )
@@ -190,19 +190,19 @@ M: tuple pprint-narrow? drop t ;
 M: object pprint* pprint-object ;
 
 M: curry pprint*
-    dup curry-quot callable? [ pprint-object ] [
+    dup quot>> callable? [ pprint-object ] [
         "( invalid curry )" swap present-text
     ] if ;
 
 M: compose pprint*
-    dup compose-first over compose-second [ callable? ] both?
+    dup [ first>> callable? ] [ second>> callable? ] bi and
     [ pprint-object ] [
         "( invalid compose )" swap present-text
     ] if ;
 
 M: wrapper pprint*
-    dup wrapped word? [
-        <block \ \ pprint-word wrapped pprint-word block>
+    dup wrapped>> word? [
+        <block \ \ pprint-word wrapped>> pprint-word block>
     ] [
         pprint-object
     ] if ;
index 298fc83e9d3cc4b26b68e55622a0f93e1a0ecbaf..2921a5cc5df2ac16873c438976d057280d6b7537 100755 (executable)
@@ -99,7 +99,7 @@ SYMBOL: ->
 "word-style" set-word-prop
 
 : remove-step-into ( word -- )
-    building get dup empty? [ drop ] [ nip pop wrapped ] if , ;
+    building get dup empty? [ drop ] [ nip pop wrapped>> ] if , ;
 
 : (remove-breakpoints) ( quot -- newquot )
     [
@@ -139,7 +139,7 @@ GENERIC: see ( defspec -- )
     [ H{ { font-style italic } } styled-text ] when* ;
 
 : seeing-word ( word -- )
-    word-vocabulary pprinter-in set ;
+    vocabulary>> pprinter-in set ;
 
 : definer. ( defspec -- )
     definer drop pprint-word ;
@@ -214,7 +214,7 @@ GENERIC: declarations. ( obj -- )
 M: object declarations. drop ;
 
 : declaration. ( word prop -- )
-    tuck word-name word-prop [ pprint-word ] [ drop ] if ;
+    tuck name>> word-prop [ pprint-word ] [ drop ] if ;
 
 M: word declarations.
     {
index 2f81207ab54e6a3cb0f32329e5ce2ac5c4927686..23a50700b30078268cd64e635f294dbc4e7a9c60 100644 (file)
@@ -20,7 +20,7 @@ TUPLE: pprinter last-newline line-count indent ;
 : <pprinter> ( -- pprinter ) 0 1 0 pprinter boa ;
 
 : record-vocab ( word -- )
-    word-vocabulary [ pprinter-use get conjoin ] when* ;
+    vocabulary>> [ pprinter-use get conjoin ] when* ;
 
 ! Utility words
 : line-limit? ( -- ? )
index f3436c9a916713972491e5daa36abc731fd395ef..9e7ded1836336177c03bfab1908032434af634bb 100755 (executable)
@@ -1,6 +1,6 @@
 ! Copyright (C) 2006, 2008 Slava Pestov.
 ! See http://factorcode.org/license.txt for BSD license.
-USING: arrays sequences sequences.private
+USING: accessors arrays sequences sequences.private
 kernel kernel.private math assocs quotations.private
 slots.private ;
 IN: quotations
@@ -12,16 +12,16 @@ M: curry call dup 3 slot swap 4 slot call ;
 M: compose call dup 3 slot swap 4 slot slip call ;
 
 M: wrapper equal?
-    over wrapper? [ [ wrapped ] bi@ = ] [ 2drop f ] if ;
+    over wrapper? [ [ wrapped>> ] bi@ = ] [ 2drop f ] if ;
 
 UNION: callable quotation curry compose ;
 
 M: callable equal?
     over callable? [ sequence= ] [ 2drop f ] if ;
 
-M: quotation length quotation-array length ;
+M: quotation length array>> length ;
 
-M: quotation nth-unsafe quotation-array nth-unsafe ;
+M: quotation nth-unsafe array>> nth-unsafe ;
 
 : >quotation ( seq -- quot )
     >array array>quotation ; inline
@@ -38,28 +38,23 @@ M: object literalize ;
 
 M: wrapper literalize <wrapper> ;
 
-M: curry length curry-quot length 1+ ;
+M: curry length quot>> length 1+ ;
 
 M: curry nth
-    over zero? [
-        nip curry-obj literalize
-    ] [
-        >r 1- r> curry-quot nth
-    ] if ;
+    over zero? [ nip obj>> literalize ] [ >r 1- r> quot>> nth ] if ;
 
 INSTANCE: curry immutable-sequence
 
 M: compose length
-    [ compose-first length ]
-    [ compose-second length ] bi + ;
+    [ first>> length ] [ second>> length ] bi + ;
 
-M: compose virtual-seq compose-first ;
+M: compose virtual-seq first>> ;
 
 M: compose virtual@
-    2dup compose-first length < [
-        compose-first
+    2dup first>> length < [
+        first>>
     ] [
-        [ compose-first length - ] [ compose-second ] bi
+        [ first>> length - ] [ second>> ] bi
     ] if ;
 
 INSTANCE: compose virtual-sequence
index f2f45b99c9565ab7ce653aca8c789b6c67245c9a..113d5eabe40d401bffed503919dcc3e13daeaab4 100755 (executable)
@@ -1,9 +1,13 @@
-! Copyright (C) 2004, 2007 Slava Pestov.
+! Copyright (C) 2004, 2008 Slava Pestov.
 ! See http://factorcode.org/license.txt for BSD license.
-USING: kernel math strings sequences.private sequences strings
-growable strings.private ;
+USING: accessors kernel math strings sequences.private sequences
+strings growable strings.private ;
 IN: sbufs
 
+TUPLE: sbuf
+{ "underlying" string }
+{ "length" array-capacity } ;
+
 <PRIVATE
 
 : string>sbuf ( string length -- sbuf )
@@ -14,9 +18,10 @@ PRIVATE>
 : <sbuf> ( n -- sbuf ) 0 <string> 0 string>sbuf ; inline
 
 M: sbuf set-nth-unsafe
-    underlying >r >r >fixnum r> >fixnum r> set-string-nth ;
+    [ >fixnum ] [ >fixnum ] [ underlying>> ] tri* set-string-nth ;
 
-M: sbuf new-sequence drop [ 0 <string> ] keep >fixnum string>sbuf ;
+M: sbuf new-sequence
+    drop [ 0 <string> ] [ >fixnum ] bi string>sbuf ;
 
 : >sbuf ( seq -- sbuf ) SBUF" " clone-like ; inline
 
@@ -35,8 +40,8 @@ M: string new-resizable drop <sbuf> ;
 M: string like
     drop dup string? [
         dup sbuf? [
-            dup length over underlying length number= [
-                underlying dup reset-string-hashcode
+            dup length over underlying>> length number= [
+                underlying>> dup reset-string-hashcode
             ] [
                 >string
             ] if
index 3e2f899774dc07cc1b4254e06dfd35c10a63c4c4..d47ef7b9bbe66016fa141a0167effc18af3ec8fb 100755 (executable)
@@ -1,6 +1,6 @@
 ! Copyright (C) 2005, 2008 Slava Pestov.\r
 ! See http://factorcode.org/license.txt for BSD license.\r
-USING: arrays kernel kernel.private math namespaces\r
+USING: accessors arrays kernel kernel.private math namespaces\r
 sequences strings words effects generic generic.standard\r
 classes slots.private combinators slots ;\r
 IN: slots.deprecated\r
@@ -21,7 +21,7 @@ PREDICATE: slot-reader < word "reading" word-prop >boolean ;
         [ set-reader-props ] 2keep\r
         dup slot-spec-offset\r
         over slot-spec-reader\r
-        rot slot-spec-type reader-quot\r
+        rot slot-spec-class reader-quot\r
         define-slot-word\r
     ] [\r
         2drop\r
@@ -62,7 +62,7 @@ PREDICATE: slot-writer < word "writing" word-prop >boolean ;
     >r [ swap "set-" % % "-" % % ] "" make r> create ;\r
 \r
 : (simple-slot-word) ( class name -- class name vocab )\r
-    over word-vocabulary >r >r word-name r> r> ;\r
+    over vocabulary>> >r >r name>> r> r> ;\r
 \r
 : simple-reader-word ( class name -- word )\r
     (simple-slot-word) reader-word ;\r
@@ -70,26 +70,8 @@ PREDICATE: slot-writer < word "writing" word-prop >boolean ;
 : simple-writer-word ( class name -- word )\r
     (simple-slot-word) writer-word ;\r
 \r
-: short-slot ( class name # -- spec )\r
-    >r object bootstrap-word over r> f f <slot-spec>\r
-    2over simple-reader-word over set-slot-spec-reader\r
-    -rot simple-writer-word over set-slot-spec-writer ;\r
-\r
-: long-slot ( spec # -- spec )\r
-    >r [ dup array? [ first2 create ] when ] map first4 r>\r
-    -rot <slot-spec> ;\r
-\r
-: simple-slots ( class slots base -- specs )\r
-    over length [ + ] with map [\r
-        {\r
-            { [ over not ] [ 2drop f ] }\r
-            { [ over string? ] [ >r dupd r> short-slot ] }\r
-            { [ over array? ] [ long-slot ] }\r
-        } cond\r
-    ] 2map sift nip ;\r
-\r
-: slot-of-reader ( reader specs -- spec/f )\r
-    [ slot-spec-reader eq? ] with find nip ;\r
-\r
-: slot-of-writer ( writer specs -- spec/f )\r
-    [ slot-spec-writer eq? ] with find nip ;\r
+: deprecated-slots ( class slot-specs -- slot-specs' )\r
+    [\r
+        2dup name>> simple-reader-word >>reader\r
+        2dup name>> simple-writer-word >>writer\r
+    ] map nip ;\r
index 8cd86606bce4a2ded364c1ac3be196d5f555960b..2b9631695af851b49c81af80136ec652b13aa90d 100755 (executable)
@@ -92,11 +92,11 @@ HELP: slot-spec
 $nl
 "The slots of a slot specification are:"
 { $list
-    { { $link slot-spec-type } " - a " { $link class } " declaring the set of possible values for the slot." }
-    { { $link slot-spec-name } " - a " { $link string } " identifying the slot." }
-    { { $link slot-spec-offset } " - an " { $link integer } " offset specifying where the slot value is stored inside instances of the relevant class. This is an implementation detail." }
-    { { $link slot-spec-reader } " - a " { $link word } " for reading the value of this slot." }
-    { { $link slot-spec-writer } " - a " { $link word } " for writing the value of this slot." }
+    { { $snippet "name" } " - a " { $link string } " identifying the slot." }
+    { { $snippet "offset" } " - an " { $link integer } " offset specifying where the slot value is stored inside instances of the relevant class. This is an implementation detail." }
+    { { $snippet "class" } " - a " { $link class } " declaring the set of possible values for the slot." }
+    { { $snippet "initial" } " - an initial value for the slot." }
+    { { $snippet "read-only" } " - a boolean indicating whether the slot is read only, or can be written to." }
 } } ;
 
 HELP: define-typecheck
@@ -111,7 +111,7 @@ HELP: define-typecheck
     }
     "It checks if the top of the stack is an instance of " { $snippet "class" } ", and if so, executes the quotation. Delegation is respected."
 }
-{ $notes "This word is used internally to wrap low-level code that does not do type-checking in safe user-visible words. For example, see how " { $link word-name } " is implemented." } ;
+{ $notes "This word is used internally to wrap unsafe low-level code in a type-checking stub." } ;
 
 HELP: define-slot-word
 { $values { "class" class } { "slot" "a positive integer" } { "word" word } { "quot" quotation } }
diff --git a/core/slots/slots-tests.factor b/core/slots/slots-tests.factor
new file mode 100644 (file)
index 0000000..16196bf
--- /dev/null
@@ -0,0 +1,18 @@
+IN: slots.tests
+USING: math accessors slots strings generic.standard kernel tools.test ;
+
+TUPLE: r/w-test foo ;
+
+TUPLE: r/o-test { "foo" read-only: t } ;
+
+[ r/o-test new 123 >>foo ] [ no-method? ] must-fail-with
+
+TUPLE: decl-test { "foo" integer } ;
+
+[ decl-test new 1.0 >>foo ] [ bad-slot-value? ] must-fail-with
+
+TUPLE: hello length ;
+
+[ 3 ] [ "xyz" length>> ] unit-test
+
+[ "xyz" 4 >>length ] [ no-method? ] must-fail-with
index 402c4e6b532b768687b1248e814d2c3200d35864..ff66a77544b466c332bc95afb2e00a894971bd3b 100755 (executable)
@@ -2,12 +2,14 @@
 ! See http://factorcode.org/license.txt for BSD license.
 USING: arrays kernel kernel.private math namespaces
 sequences strings words effects generic generic.standard
-classes slots.private combinators accessors ;
+classes slots.private combinators accessors words ;
 IN: slots
 
-TUPLE: slot-spec type name offset reader writer ;
+TUPLE: slot-spec name offset class initial read-only reader writer ;
 
-C: <slot-spec> slot-spec
+: <slot-spec> ( -- slot-spec )
+    slot-spec new
+        object bootstrap-word >>class ;
 
 : define-typecheck ( class generic quot -- )
     [
@@ -15,9 +17,13 @@ C: <slot-spec> slot-spec
         create-method
     ] dip define ;
 
-: define-slot-word ( class slot word quot -- )
+: define-slot-word ( class offset word quot -- )
     rot >fixnum prefix define-typecheck ;
 
+: create-accessor ( name effect -- word )
+    >r "accessors" create dup r>
+    "declared-effect" set-word-prop ;
+
 : reader-quot ( decl -- quot )
     [
         \ slot ,
@@ -25,15 +31,14 @@ C: <slot-spec> slot-spec
         [ drop ] [ 1array , \ declare , ] if
     ] [ ] make ;
 
-: create-accessor ( name effect -- word )
-    >r "accessors" create dup r>
-    "declared-effect" set-word-prop ;
-
 : reader-word ( name -- word )
     ">>" append (( object -- value )) create-accessor ;
 
-: define-reader ( class slot name decl -- )
-    [ reader-word ] dip reader-quot define-slot-word ;
+: define-reader ( class slot-spec -- )
+    [ offset>> ]
+    [ name>> reader-word ]
+    [ class>> reader-quot ]
+    tri define-slot-word ;
 
 : writer-word ( name -- word )
     "(>>" swap ")" 3append (( value object -- )) create-accessor ;
@@ -50,22 +55,25 @@ ERROR: bad-slot-value value object index ;
         ] if
     ] [ ] make ;
 
-: define-writer ( class slot name decl -- )
-    [ writer-word ] dip writer-quot define-slot-word ;
+: define-writer ( class slot-spec -- )
+    [ offset>> ]
+    [ name>> writer-word ]
+    [ class>> writer-quot ]
+    tri define-slot-word ;
 
 : setter-word ( name -- word )
     ">>" prepend (( object value -- object )) create-accessor ;
 
-: define-setter ( name -- )
-    dup setter-word dup deferred? [
+: define-setter ( slot-spec -- )
+    name>> dup setter-word dup deferred? [
         [ \ over , swap writer-word , ] [ ] make define-inline
     ] [ 2drop ] if ;
 
 : changer-word ( name -- word )
     "change-" prepend (( object quot -- object )) create-accessor ;
 
-: define-changer ( name -- )
-    dup changer-word dup deferred? [
+: define-changer ( slot-spec -- )
+    name>> dup changer-word dup deferred? [
         [
             [ over >r >r ] %
             over reader-word ,
@@ -75,15 +83,63 @@ ERROR: bad-slot-value value object index ;
     ] [ 2drop ] if ;
 
 : define-slot-methods ( class slot-spec -- )
-    {
-        [ [ drop ] [ name>> ] bi* define-changer ]
-        [ [ drop ] [ name>> ] bi* define-setter ]
-        [ [ offset>> ] [ name>> ] [ type>> ] tri define-reader ]
-        [ [ offset>> ] [ name>> ] [ type>> ] tri define-writer ]
-    } 2cleave ;
+    [ define-reader ]
+    [
+        dup read-only>> [ 2drop ] [
+            [ define-setter drop ]
+            [ define-changer drop ]
+            [ define-writer ]
+            2tri
+        ] if
+    ] 2bi ;
 
 : define-accessors ( class specs -- )
     [ define-slot-methods ] with each ;
 
+: define-protocol-slot ( name -- )
+    {
+        [ reader-word drop ]
+        [ writer-word drop ]
+        [ setter-word drop ]
+        [ changer-word drop ]
+    } cleave ;
+
+GENERIC: make-slot ( desc -- slot-spec )
+
+M: string make-slot
+    <slot-spec>
+        swap >>name ;
+
+: peel-off-name ( slot-spec array -- slot-spec array )
+    [ first >>name ] [ rest ] bi ; inline
+
+: peel-off-class ( slot-spec array -- slot-spec array )
+    dup empty? [
+        ! We'd use class? here, but during bootstrap, we sometimes
+        ! create slots whose class hasn't been defined yet.
+        dup first name>> ":" tail? not [
+            [ first >>class ] [ rest ] bi
+        ] when
+    ] unless ;
+
+: peel-off-attributes ( slot-spec array -- slot-spec array )
+    dup empty? [
+        unclip {
+            { initial: [ [ first >>initial ] [ rest ] bi ] }
+            { read-only: [ [ first >>read-only ] [ rest ] bi ] }
+        } case
+    ] unless ;
+
+M: array make-slot
+    <slot-spec>
+        swap
+        peel-off-name
+        peel-off-class
+        [ dup empty? not ] [ peel-off-attributes ] [ ] while drop ;
+
+: make-slots ( slots base -- specs )
+    over length [ + ] with map
+    [ [ make-slot ] dip >>offset ] 2map ;
+
 : slot-named ( name specs -- spec/f )
     [ slot-spec-name = ] with find nip ;
index dac1c08e46525a6786a7363433258e6665bfc626..1a2491328c0e67c437df4222a78358f799b540e6 100755 (executable)
@@ -1,7 +1,7 @@
 ! Copyright (C) 2005, 2007 Slava Pestov.
 ! See http://factorcode.org/license.txt for BSD license.
-USING: arrays kernel math sequences vectors math.order
-sequences sequences.private growable math.order ;
+USING: accessors arrays kernel math sequences vectors math.order
+sequences sequences.private math.order ;
 IN: sorting
 
 DEFER: sort
@@ -34,7 +34,7 @@ DEFER: sort
 : merge ( sorted1 sorted2 quot -- result )
     >r [ [ <iterator> ] bi@ ] 2keep r>
     rot length rot length + <vector>
-    [ (merge) ] keep underlying ; inline
+    [ (merge) ] [ underlying>> ] bi ; inline
 
 : conquer ( first second quot -- result )
     [ tuck >r >r sort r> r> sort ] keep merge ; inline
index 14847372778a8ea83026dfe29a31972d6b36563a..8ff5a7caf4b63981cd531ce4d796822c4b739cbb 100755 (executable)
@@ -1,6 +1,6 @@
 ! Copyright (C) 2003, 2008 Slava Pestov.
 ! See http://factorcode.org/license.txt for BSD license.
-USING: kernel math.private sequences kernel.private
+USING: accessors kernel math.private sequences kernel.private
 math sequences.private slots.private byte-arrays
 alien.accessors ;
 IN: strings
@@ -30,6 +30,9 @@ M: string hashcode*
     nip dup string-hashcode [ ]
     [ dup rehash-string string-hashcode ] ?if ;
 
+M: string length
+    length>> ;
+
 M: string nth-unsafe
     >r >fixnum r> string-nth ;
 
@@ -38,7 +41,7 @@ M: string set-nth-unsafe
     >r >fixnum >r >fixnum r> r> set-string-nth ;
 
 M: string clone
-    (clone) dup string-aux clone over set-string-aux ;
+    (clone) [ clone ] change-aux ;
 
 M: string resize resize-string ;
 
index db1b875eb60fca3f52807d0668b56445181a52d8..eb72e42c2bc402b30dbe30bec6343b77348f19cd 100755 (executable)
@@ -547,8 +547,46 @@ HELP: PREDICATE:
 
 HELP: TUPLE:
 { $syntax "TUPLE: class slots... ;" "TUPLE: class < superclass slots ... ;" }
-{ $values { "class" "a new tuple class to define" } { "slots" "a list of slot names" } }
-{ $description "Defines a new tuple class. The superclass is optional; if left unspecified, it defaults to " { $link tuple } "." } ;
+{ $values { "class" "a new tuple class to define" } { "slots" "a list of slot specifiers" } }
+{ $description "Defines a new tuple class."
+$nl
+"The superclass is optional; if left unspecified, it defaults to " { $link tuple } "."
+$nl
+"Slot specifiers take one of the following three forms:"
+{ $list
+    { { $snippet "name" } " - a slot which can hold any object, with no attributes" }
+    { { $snippet "{ \"name\" attributes... }" } " - a slot which can hold any object, with optional attributes" }
+    { { $snippet "{ \"name\" class attributes... }" } " - a slot specialized to a specific class, with optional attributes" }
+}
+"Slot attributes are lists of slot attribute specifiers followed by values; a slot attribute specifier is one of " { $link initial: } " or " { $link read-only: } "." }
+{ $examples
+    "A simple tuple class:"
+    { $code "TUPLE: color red green blue ;" }
+    "Declaring slots to be integer-valued:"
+    { $code "TUPLE: color" "{ \"red\" integer }" "{ \"green\" integer }" "{ \"blue\" integer } ;" }
+    "An example mixing short and long slot specifiers:"
+    { $code "TUPLE: person" "{ \"age\" integer initial: 0 }" "{ \"department\" string initial: \"Marketing\" }" "manager ;" }
+} ;
+
+HELP: initial:
+{ $syntax "TUPLE: ... { \"slot\" initial: value } ... ;" }
+{ $values { "slot" "a slot name" } { "value" "any literal" } }
+{ $description "Specifies an initial value for a tuple slot." } ;
+
+HELP: read-only:
+{ $syntax "TUPLE: ... { \"slot\" read-only: ? } ... ;" }
+{ $values { "slot" "a slot name" } { "?" "a boolean" } }
+{ $description "Defines a tuple slot to be read-only. If a tuple has read-only slots, instances of the tuple should only be created by calling " { $link boa } ", instead of " { $link new } ". Using " { $link boa } " is the only way to set the value of a read-only slot." } ;
+
+{ initial: read-only: } related-words
+
+HELP: SLOT:
+{ $syntax "SLOT: name" }
+{ $values { "name" "a slot name" } }
+{ $description "Defines a protocol slot; that is, defines the accessor words for a slot named " { $snippet "slot" } " without associating it with any specific tuple." }
+{ $notes
+    "Protocol slots are used where the implementation of a superclass needs to assume that each subclass defines certain slots, however the slots of each subclass are potentially declared with different class specializers, thus preventing the slots from being defined in the superclass."
+} ;
 
 HELP: ERROR:
 { $syntax "ERROR: class slots... ;" }
index 4d4b81d00ea360688cea2d22ef3904658e53c0ef..5257fb5e552de0e81b34430050a7ec389ee4bf9d 100755 (executable)
@@ -8,7 +8,7 @@ generic.standard generic.math generic.parser classes io.files
 vocabs float-arrays classes.parser classes.union
 classes.intersection classes.mixin classes.predicate
 classes.singleton classes.tuple.parser compiler.units
-combinators debugger effects.parser ;
+combinators debugger effects.parser slots ;
 IN: bootstrap.syntax
 
 ! These words are defined as a top-level form, instead of with
@@ -166,6 +166,10 @@ IN: bootstrap.syntax
         parse-tuple-definition define-tuple-class
     ] define-syntax
 
+    "SLOT:" [
+        scan define-protocol-slot
+    ] define-syntax
+
     "C:" [
         CREATE-WORD
         scan-word check-tuple-class
@@ -208,4 +212,8 @@ IN: bootstrap.syntax
             not-in-a-method-error
         ] if
     ] define-syntax
+    
+    "initial:" "syntax" lookup define-symbol
+    
+    "read-only:" "syntax" lookup define-symbol
 ] with-compilation-unit
index 4a6b41f863a74566b3f5c41d248afa09b5afda28..b54b2bc91a8cacf3a4e9674bc0faa99f76478bd9 100755 (executable)
@@ -3,6 +3,10 @@
 USING: arrays kernel math sequences sequences.private growable ;
 IN: vectors
 
+TUPLE: vector
+{ "underlying" array }
+{ "length" array-capacity } ;
+
 <PRIVATE
 
 : array>vector ( array length -- vector )
index 96998441924cd0ac9704e3aa91364414d7fd2c41..2f0d0614993b479dff1b343822360ebad2477901 100755 (executable)
@@ -11,10 +11,7 @@ $nl
 "Parsing words add definitions to the current vocabulary. When a source file is being parsed, the current vocabulary is initially set to " { $vocab-link "scratchpad" } ". The current vocabulary may be changed with the " { $link POSTPONE: IN: } " parsing word (see " { $link "vocabulary-search" } ")."
 { $subsection create }
 { $subsection create-in }
-{ $subsection lookup }
-"Words can output their name and vocabulary:"
-{ $subsection word-name }
-{ $subsection word-vocabulary } ;
+{ $subsection lookup } ;
 
 ARTICLE: "uninterned-words" "Uninterned words"
 "A word that is not a member of any vocabulary is said to be " { $emphasis "uninterned" } "."
@@ -103,8 +100,6 @@ ARTICLE: "word-props" "Word properties"
 "Each word has a hashtable of properties."
 { $subsection word-prop }
 { $subsection set-word-prop }
-{ $subsection word-props }
-{ $subsection set-word-props }
 "The stack effect of the above two words is designed so that it is most convenient when " { $snippet "name" } " is a literal pushed on the stack right before executing this word."
 $nl
 "The following are some of the properties used by the library:"
@@ -159,9 +154,8 @@ $nl
 } ;
 
 ARTICLE: "word.private" "Word implementation details"
-"Primitive definition accessors:"
-{ $subsection word-def }
-{ $subsection set-word-def }
+"The " { $snippet "def" } " slot of a word holds a " { $link quotation } " instance that is called when the word is executed."
+$nl
 "An " { $emphasis "XT" } " (execution token) is the machine code address of a word:"
 { $subsection word-xt } ;
 
@@ -189,10 +183,6 @@ $nl
 
 ABOUT: "words"
 
-HELP: compiled? ( word -- ? )
-{ $values { "word" word } { "?" "a boolean" } }
-{ $description "Tests if a word has been compiled." } ;
-
 HELP: execute ( word -- )
 { $values { "word" word } }
 { $description "Executes a word." }
@@ -200,26 +190,6 @@ HELP: execute ( word -- )
     { $example "USING: kernel io words ;" "IN: scratchpad" ": twice dup execute execute ;\n: hello \"Hello\" print ;\n\\ hello twice" "Hello\nHello" }
 } ;
 
-HELP: word-props ( word -- props )
-{ $values { "word" word } { "props" "an assoc" } }
-{ $description "Outputs a word's property table." } ;
-
-HELP: set-word-props ( props word -- )
-{ $values { "props" "an assoc" } { "word" word } }
-{ $description "Sets a word's property table." }
-{ $notes "The given assoc must not be a literal, since it will be mutated by future calls to " { $link set-word-prop } "." }
-{ $side-effects "word" } ;
-
-HELP: word-def ( word -- obj )
-{ $values { "word" word } { "obj" object } }
-{ $description "Outputs a word's primitive definition." } ;
-
-HELP: set-word-def ( obj word -- )
-{ $values { "obj" object } { "word" word } }
-{ $description "Sets a word's primitive definition." }
-$low-level-note
-{ $side-effects "word" } ;
-
 HELP: deferred
 { $class-description "The class of deferred words created by " { $link POSTPONE: DEFER: } "." } ;
 
index 13be1adb6955fa0401e0b05aea5db5a907f55e99..3f8c492aff7f332a3a8725233320ce04ccedd9c8 100755 (executable)
@@ -37,7 +37,7 @@ DEFER: plist-test
 ] with-scope
 
 [ "test-scope" ] [
-    "test-scope" "scratchpad" lookup word-name
+    "test-scope" "scratchpad" lookup name>> 
 ] unit-test
 
 [ t ] [ vocabs array? ] unit-test
@@ -120,7 +120,7 @@ DEFER: x
 [ f ] [ "no-loc-2" "words.tests" lookup where ] unit-test
 
 [ ] [ "IN: words.tests : test-last ( -- ) ;" eval ] unit-test
-[ "test-last" ] [ word word-name ] unit-test
+[ "test-last" ] [ word name>> ] unit-test
 
 ! regression
 SYMBOL: quot-uses-a
index d17377fdcaadaea1425a7c849c6b03329a005854..9bf006fa16df1e5277b3ab069694d25d8b78270f 100755 (executable)
@@ -1,9 +1,9 @@
 ! Copyright (C) 2004, 2008 Slava Pestov.
 ! See http://factorcode.org/license.txt for BSD license.
-USING: arrays definitions graphs assocs kernel kernel.private
-slots.private math namespaces sequences strings vectors sbufs
-quotations assocs hashtables sorting words.private vocabs
-math.order sets ;
+USING: accessors arrays definitions graphs assocs kernel
+kernel.private slots.private math namespaces sequences strings
+vectors sbufs quotations assocs hashtables sorting words.private
+vocabs math.order sets ;
 IN: words
 
 : word ( -- word ) \ word get-global ;
@@ -15,37 +15,36 @@ GENERIC: execute ( word -- )
 M: word execute (execute) ;
 
 M: word <=>
-    [ dup word-name swap word-vocabulary 2array ] compare ;
+    [ [ name>> ] [ vocabulary>> ] bi 2array ] compare ;
 
 M: word definer drop \ : \ ; ;
 
-M: word definition word-def ;
+M: word definition def>> ;
 
 ERROR: undefined ;
 
 PREDICATE: deferred < word ( obj -- ? )
-    word-def [ undefined ] = ;
+    def>> [ undefined ] = ;
 M: deferred definer drop \ DEFER: f ;
 M: deferred definition drop f ;
 
 PREDICATE: symbol < word ( obj -- ? )
-    dup <wrapper> 1array swap word-def sequence= ;
+    [ def>> ] [ [ ] curry ] bi sequence= ;
 M: symbol definer drop \ SYMBOL: f ;
 M: symbol definition drop f ;
 
 PREDICATE: primitive < word ( obj -- ? )
-    word-def [ do-primitive ] tail? ;
+    def>> [ do-primitive ] tail? ;
 M: primitive definer drop \ PRIMITIVE: f ;
 M: primitive definition drop f ;
 
-: word-prop ( word name -- value ) swap word-props at ;
+: word-prop ( word name -- value ) swap props>> at ;
 
-: remove-word-prop ( word name -- )
-    swap word-props delete-at ;
+: remove-word-prop ( word name -- ) swap props>> delete-at ;
 
 : set-word-prop ( word value name -- )
     over
-    [ pick word-props ?set-at swap set-word-props ]
+    [ pick props>> ?set-at >>props drop ]
     [ nip remove-word-prop ] if ;
 
 : reset-props ( word seq -- ) [ remove-word-prop ] with each ;
@@ -53,7 +52,7 @@ M: primitive definition drop f ;
 : lookup ( name vocab -- word ) vocab-words at ;
 
 : target-word ( word -- target )
-    dup word-name swap word-vocabulary lookup ;
+    [ name>> ] [ vocabulary>> ] bi lookup ;
 
 SYMBOL: bootstrapping?
 
@@ -69,7 +68,7 @@ M: word crossref?
     dup "forgotten" word-prop [
         drop f
     ] [
-        word-vocabulary >boolean
+        vocabulary>> >boolean
     ] if ;
 
 GENERIC: compiled-crossref? ( word -- ? )
@@ -88,13 +87,13 @@ M: array (quot-uses) seq-uses ;
 
 M: callable (quot-uses) seq-uses ;
 
-M: wrapper (quot-uses) >r wrapped r> (quot-uses) ;
+M: wrapper (quot-uses) >r wrapped>> r> (quot-uses) ;
 
 : quot-uses ( quot -- assoc )
     global [ H{ } clone [ (quot-uses) ] keep ] bind ;
 
 M: word uses ( word -- seq )
-    word-def quot-uses keys ;
+    def>> quot-uses keys ;
 
 SYMBOL: compiled-crossref
 
@@ -140,7 +139,7 @@ M: object redefined drop ;
     [ ] like
     over unxref
     over redefined
-    over set-word-def
+    >>def
     dup +inlined+ changed-definition
     dup crossref? [ dup xref ] when drop ;
 
@@ -204,7 +203,7 @@ M: word subwords drop f ;
     gensym dup rot define ;
 
 : reveal ( word -- )
-    dup word-name over word-vocabulary dup vocab-words
+    dup [ name>> ] [ vocabulary>> ] bi dup vocab-words
     [ ] [ no-vocab ] ?if
     set-at ;
 
@@ -234,7 +233,7 @@ M: word set-where swap "loc" set-word-prop ;
 M: word forget*
     dup "forgotten" word-prop [ drop ] [
         [ delete-xref ]
-        [ [ word-name ] [ word-vocabulary vocab-words ] bi delete-at ]
+        [ [ name>> ] [ vocabulary>> vocab-words ] bi delete-at ]
         [ t "forgotten" set-word-prop ]
         tri
     ] if ;
@@ -244,6 +243,6 @@ M: word hashcode*
 
 M: word literalize <wrapper> ;
 
-: ?word-name ( word -- name ) dup word? [ word-name ] when ;
+: ?word-name ( word -- name ) dup word? [ name>> ] when ;
 
 : xref-words ( -- ) all-words [ xref ] each ;
index f468340e53325367836c5246e5749b0aee145dfd..a07c981b97a17671d006f6c647122558ac7b7f9b 100755 (executable)
@@ -7,7 +7,7 @@ M: alias reset-word
     [ call-next-method ] [ f "alias" set-word-prop ] bi ;\r
 \r
 M: alias stack-effect\r
-    word-def first stack-effect ;\r
+    def>> first stack-effect ;\r
 \r
 : define-alias ( new old -- )\r
     [ 1quotation define-inline ]\r
index c14b0a54764840d4ff7c774cb76be2b5b9d86191..a9bee0c2acb6ba6799a948194bea9176ea9d53b1 100755 (executable)
@@ -5,15 +5,9 @@ sequences.private growable bit-arrays prettyprint.backend
 parser accessors ;\r
 IN: bit-vectors\r
 \r
-TUPLE: bit-vector underlying fill ;\r
-\r
-M: bit-vector underlying underlying>> { bit-array } declare ;\r
-\r
-M: bit-vector set-underlying (>>underlying) ;\r
-\r
-M: bit-vector length fill>> { array-capacity } declare ;\r
-\r
-M: bit-vector set-fill (>>fill) ;\r
+TUPLE: bit-vector\r
+{ "underlying" bit-array }\r
+{ "length" array-capacity } ;\r
 \r
 <PRIVATE\r
 \r
index aa8dc4f9cfd53741877759118a3eff9eddd49970..d8f58d31ab85a95ff3dd723cb4f1b7e0a15653cf 100755 (executable)
@@ -512,7 +512,7 @@ SYMBOL: rom-root
   [ " A: " write cpu-a 16 >base 2 CHAR: \s pad-left write ] keep 
   [ " SP: " write cpu-sp 16 >base 4 CHAR: \s pad-left write ] keep 
   [ " cycles: " write cpu-cycles number>string 5 CHAR: \s pad-left write ] keep 
-  [ " " write peek-instruction word-name write " " write ] keep
+  [ " " write peek-instruction name>> write " " write ] keep
   nl drop ;
 
 : cpu*. ( cpu -- )
index 5c3f3e13e6066f639055bedde0a53d250da2d553..9e93ba7cadd6670c163e8926a17425682f1848df 100644 (file)
@@ -167,7 +167,7 @@ M: db <query> ( tuple class query -- tuple )
         dup class db-columns [ ", " 0, ]
         [ dup column-name>> 0, 2, ] interleave
         from 0,
-        class word-name 0,
+        class name>> 0,
     ] { { } { } { } } nmake
     >r >r parse-sql 4drop r> r>
     <simple-statement> maybe-make-retryable do-select ;
index 4f1e950b01352bc53194725381f2483d1bea452d..915ad0c648b3c678fd0cb04efe30cca3ce4bc6ba 100755 (executable)
@@ -1,6 +1,6 @@
 ! Copyright (C) 2007 Daniel Ehrenberg
 ! See http://factorcode.org/license.txt for BSD license.
-USING: parser generic kernel classes words slots assocs
+USING: accessors parser generic kernel classes words slots assocs
 sequences arrays vectors definitions prettyprint
 math hashtables sets macros namespaces ;
 IN: delegate
@@ -35,7 +35,7 @@ M: tuple-class group-words
     define ;
 
 : change-word-prop ( word prop quot -- )
-    rot word-props swap change-at ; inline
+    rot props>> swap change-at ; inline
 
 : register-protocol ( group class quot -- )
     rot \ protocol-consult [ swapd ?set-at ] change-word-prop ;
index 56d62d8634b741886d019a594cbe91cd1d8df1e8..6aafe46b4d81b9be1e8f8372b9e778b85c8ec7c1 100755 (executable)
@@ -6,7 +6,7 @@ IN: descriptive
 ERROR: descriptive-error args underlying word ;\r
 \r
 M: descriptive-error summary\r
-    word>> "The " swap word-name " word encountered an error."\r
+    word>> "The " swap name>> " word encountered an error."\r
     3append ;\r
 \r
 <PRIVATE\r
index 3811949c1d8220c35369fbf720e76e0cae588679..5395997accdeab2f9decac8f3120e71167f5468a 100755 (executable)
@@ -322,10 +322,10 @@ M: number (parse-factor-quotation) ( object -- ast )
   <ast-number> ;
 
 M: symbol (parse-factor-quotation) ( object -- ast )
-  dup >string swap word-vocabulary <ast-identifier> ;
+  dup >string swap vocabulary>> <ast-identifier> ;
 
 M: word (parse-factor-quotation) ( object -- ast )
-  dup word-name swap word-vocabulary <ast-identifier> ;
+  dup name>> swap vocabulary>> <ast-identifier> ;
 
 M: string (parse-factor-quotation) ( object -- ast )
   <ast-string> ;
@@ -346,7 +346,7 @@ M: hashtable (parse-factor-quotation) ( object -- ast )
   ] { } make <ast-hashtable> ;
 
 M: wrapper (parse-factor-quotation) ( object -- ast )
-  wrapped dup word-name swap word-vocabulary <ast-word> ;
+  wrapped dup name>> swap vocabulary>> <ast-word> ;
 
 GENERIC: fjsc-parse ( object -- ast )
 
index d51f0d4e448ea034280735e5d8271f3902848502..293c20c8b5220e50d8374118c208ebd300b98425 100755 (executable)
@@ -5,15 +5,9 @@ sequences.private growable float-arrays prettyprint.backend
 parser accessors ;\r
 IN: float-vectors\r
 \r
-TUPLE: float-vector underlying fill ;\r
-\r
-M: float-vector underlying underlying>> { float-array } declare ;\r
-\r
-M: float-vector set-underlying (>>underlying) ;\r
-\r
-M: float-vector length fill>> { array-capacity } declare ;\r
-\r
-M: float-vector set-fill (>>fill) ;\r
+TUPLE: float-vector\r
+{ "underlying" float-array }\r
+{ "length" array-capacity } ;\r
 \r
 <PRIVATE\r
 \r
index 90b529e385af43dea30747d539fe08f855e7b249..242e193013365a1e8e5f29dc4658e8eb55c9d3f5 100644 (file)
@@ -31,7 +31,7 @@ IN: furnace
 
 : base-path ( string -- pair )
     dup responder-nesting get
-    [ second class superclasses [ word-name = ] with contains? ] with find nip
+    [ second class superclasses [ name>> = ] with contains? ] with find nip
     [ first ] [ "No such responder: " swap append throw ] ?if ;
 
 : resolve-base-path ( string -- string' )
@@ -46,7 +46,7 @@ IN: furnace
 
 : resolve-template-path ( pair -- path )
     [
-        first2 [ word-vocabulary vocab-path % ] [ "/" % % ] bi*
+        first2 [ vocabulary>> vocab-path % ] [ "/" % % ] bi*
     ] "" make ;
 
 GENERIC: modify-query ( query responder -- query' )
index 20c05d459fea52ae36934ad7b7f11cda2470a08d..60012d9f4ce593d1c5602fde1d61bb948c6e9f87 100644 (file)
@@ -4,7 +4,7 @@ USING: words kernel sequences splitting ;
 IN: furnace.utilities
 
 : word>string ( word -- string )
-    [ word-vocabulary ] [ word-name ] bi ":" swap 3append ;
+    [ vocabulary>> ] [ name>> ] bi ":" swap 3append ;
 
 : words>strings ( seq -- seq' )
     [ word>string ] map ;
index 6c921fe0a2cf8fc0c69fdff8305e845c57af2165..58949b4cc235f1070a082cc82abe7c4a26137a37 100755 (executable)
@@ -1,8 +1,8 @@
 ! Copyright (C) 2005, 2008 Slava Pestov.
 ! See http://factorcode.org/license.txt for BSD license.
-USING: arrays io kernel namespaces parser prettyprint sequences
-words assocs definitions generic quotations effects slots
-continuations classes.tuple debugger combinators vocabs
+USING: accessors arrays io kernel namespaces parser prettyprint
+sequences words assocs definitions generic quotations effects
+slots continuations classes.tuple debugger combinators vocabs
 help.stylesheet help.topics help.crossref help.markup sorting
 classes vocabs.loader ;
 IN: help
@@ -43,13 +43,13 @@ M: predicate word-help* drop \ $predicate ;
 : all-errors ( -- seq )
     all-words [ error? ] filter sort-articles ;
 
-M: word article-name word-name ;
+M: word article-name name>> ;
 
 M: word article-title
     dup [ parsing-word? ] [ symbol? ] bi or [
-        word-name
+        name>> 
     ] [
-        [ word-name ]
+        [ name>> ]
         [ stack-effect [ effect>string " " prepend ] [ "" ] if* ] bi
         append
     ] if ;
index eef2463019dddd523f7094745f62c46b1461a587..82f7f998d7e8a61ee11872887b1d568d7c71bc38 100755 (executable)
@@ -1,7 +1,7 @@
-! Copyright (C) 2006, 2007 Slava Pestov.
+! Copyright (C) 2006, 2008 Slava Pestov.
 ! See http://factorcode.org/license.txt for BSD license.
-USING: sequences parser kernel help help.markup help.topics
-words strings classes tools.vocabs namespaces io
+USING: accessors sequences parser kernel help help.markup
+help.topics words strings classes tools.vocabs namespaces io
 io.streams.string prettyprint definitions arrays vectors
 combinators splitting debugger hashtables sorting effects vocabs
 vocabs.loader assocs editors continuations classes.predicate
@@ -27,13 +27,10 @@ IN: help.lint
     ] unless ;
 
 : effect-values ( word -- seq )
-    stack-effect dup effect-in swap effect-out append [
-        {
-            { [ dup word? ] [ word-name ] }
-            { [ dup integer? ] [ drop "object" ] }
-            { [ dup string? ] [ ] }
-        } cond
-    ] map prune natural-sort ;
+    stack-effect
+    [ in>> ] [ out>> ] bi append
+    [ (stack-picture) ] map
+    prune natural-sort ;
 
 : contains-funky-elements? ( element -- ? )
     {
index 150a66ec926bd6cb831d29c49ebe2b221fdda2fa..692255bdd543efc245ff609d62e8852ab1bccb49 100755 (executable)
@@ -1,9 +1,9 @@
 ! Copyright (C) 2005, 2008 Slava Pestov.
 ! See http://factorcode.org/license.txt for BSD license.
-USING: arrays definitions generic io kernel assocs hashtables
-namespaces parser prettyprint sequences strings io.styles
-vectors words math sorting splitting classes
-slots vocabs help.stylesheet help.topics vocabs.loader ;
+USING: accessors arrays definitions generic io kernel assocs
+hashtables namespaces parser prettyprint sequences strings
+io.styles vectors words math sorting splitting classes slots
+vocabs help.stylesheet help.topics vocabs.loader ;
 IN: help.markup
 
 ! Simple markup language.
@@ -178,7 +178,7 @@ M: f print-element drop ;
     first dup vocab-name swap ($vocab-link) ;
 
 : $vocabulary ( element -- )
-    first word-vocabulary [
+    first vocabulary>> [
         "Vocabulary" $heading nl dup ($vocab-link)
     ] when* ;
 
@@ -230,7 +230,7 @@ M: f print-element drop ;
 GENERIC: ($instance) ( element -- )
 
 M: word ($instance)
-    dup word-name a/an write bl ($link) ;
+    dup name>> a/an write bl ($link) ;
 
 M: string ($instance)
     dup a/an write bl $snippet ;
index cfa576d56fcd254de90e385d53fffa25cfa3df99..9412fde42321da6a5cc110b0047f634eca55ee53 100644 (file)
@@ -38,7 +38,7 @@ MEMO: chloe-name ( string -- name )
 
 : CHLOE-SINGLETON:
     scan-word
-    [ word-name ] [ '[ , singleton-component-tag ] ] bi
+    [ name>> ] [ '[ , singleton-component-tag ] ] bi
     define-chloe-tag ;
     parsing
 
@@ -56,6 +56,6 @@ MEMO: chloe-name ( string -- name )
 
 : CHLOE-TUPLE:
     scan-word
-    [ word-name ] [ '[ , tuple-component-tag ] ] bi
+    [ name>> ] [ '[ , tuple-component-tag ] ] bi
     define-chloe-tag ;
     parsing
index 43507046d64cae2ea32b90cb9e05d3e7db85d4bd..d6c3d633b2492a69d01baece4e30848af48fac92 100755 (executable)
@@ -80,7 +80,7 @@ UNION: explicit-inverse normal-inverse math-inverse pop-inverse ;
     ] } 1&& ; 
 
 : (flatten) ( quot -- )
-    [ dup flattenable? [ word-def (flatten) ] [ , ] if ] each ;
+    [ dup flattenable? [ def>> (flatten) ] [ , ] if ] each ;
 
  : retain-stack-overflow? ( error -- ? )
     { "kernel-error" 14 f f } = ;
index dee5c3234988a526f27a2491408d4074e4dc1fb5..52bee6385074c24b2c7136f1ecb1e4f922001425 100644 (file)
@@ -33,7 +33,7 @@ concurrency.promises byte-arrays locals calendar io.timeouts ;
         "127.0.0.1" "port" get ?promise <inet4> <secure> ascii <client> drop contents
     ] with-secure-context ;
 
-[ ] [ [ class word-name write ] server-test ] unit-test
+[ ] [ [ class name>> write ] server-test ] unit-test
 
 [ "secure" ] [ client-test ] unit-test
 
index 3a379de78faf1af74414b70234979719f9480a69..a7771111dbec39ce9baed4a269aa9ed0ddb68b79 100755 (executable)
@@ -1,4 +1,4 @@
-USING: system words sequences vocabs.loader ;
+USING: accessors system words sequences vocabs.loader ;
 
 {
     "io.unix.backend"
@@ -10,4 +10,4 @@ USING: system words sequences vocabs.loader ;
     "io.unix.pipes"
 } [ require ] each
 
-"io.unix." os word-name append require
+"io.unix." os name>> append require
index b56473a0a97780049d646cf3571bb27997df4952..dce589dc9e17fe9e13d3b16495711eab0e484484 100755 (executable)
@@ -41,7 +41,7 @@ SYMBOL: terms
         nip number>string
     ] [
         num-alt.
-        swap [ word-name ] map "." join
+        swap [ name>> ] map "." join
         append
     ] if ;
 
index 49eec6d65287944c4aabff54be9aa1ac5c3c6476..46873d016c7473ef071f88ca4484ed13b5b9ed3e 100755 (executable)
@@ -48,7 +48,7 @@ PREDICATE: local-reader < word "local-reader?" word-prop ;
 PREDICATE: local-writer < word "local-writer?" word-prop ;
 
 : <local-writer> ( reader -- word )
-    dup word-name "!" append f <word>
+    dup name>> "!" append f <word>
     [ t "local-writer?" set-word-prop ] keep
     [ "local-writer" set-word-prop ] 2keep
     [ swap "local-reader" set-word-prop ] keep ;
@@ -187,15 +187,15 @@ M: object local-rewrite* , ;
 : make-local ( name -- word )
     "!" ?tail [
         <local-reader>
-        dup <local-writer> dup word-name set
+        dup <local-writer> dup name>> set
     ] [ <local> ] if
-    dup dup word-name set ;
+    dup dup name>> set ;
 
 : make-locals ( seq -- words assoc )
     [ [ make-local ] map ] H{ } make-assoc ;
 
 : make-local-word ( name -- word )
-    <local-word> dup dup word-name set ;
+    <local-word> dup dup name>> set ;
 
 : push-locals ( assoc -- )
     use get push ;
index 5168e7fcd2c203262d65fee8898b37735b351d0c..569de2b9f7ab78a4ad3104353b8c771bf8241533 100755 (executable)
@@ -23,7 +23,7 @@ SYMBOL: log-service
 : log-message ( msg word level -- )\r
     check-log-message\r
     log-service get dup [\r
-        [ [ string-lines ] [ word-name ] [ word-name ] tri* ] dip\r
+        [ [ string-lines ] [ name>> ] [ name>> ] tri* ] dip\r
         4array "log-message" send-to-log-server\r
     ] [\r
         4drop\r
index dc80f9e87f3fbbc4452c80d822b4144d03b50991..76c7ab6c90498912f6d5e68bfc362fbfef2fd4d6 100644 (file)
@@ -3,7 +3,7 @@ USING: help.markup help.syntax assocs logging math calendar ;
 
 HELP: parse-log
 { $values { "lines" "a sequence of strings" } { "entries" "a sequence of log entries" } }
-{ $description "Parses a sequence of log entries. Malformed entries are printed out and ignore. The result is a sequence of arrays of the shape " { $snippet "{ timestamp level word-name message }" } ", where"
+{ $description "Parses a sequence of log entries. Malformed entries are printed out and ignore. The result is a sequence of arrays of the shape " { $snippet "{ timestamp level name>> message }" } ", where"
     { $list
         { { $snippet "timestamp" } " is a " { $link timestamp } }
         { { $snippet "level" } " is a log level; see " { $link "logging.levels" } }
index 326661fee5df5403e32e3c1d087c7367da914c51..76162c666a6a5a11ba10a6d8b1ce77386471a471 100755 (executable)
@@ -19,7 +19,7 @@ SYMBOL: multiline
 \r
 : 'log-level' ( -- parser )\r
     log-levels [\r
-        [ word-name token ] keep [ nip ] curry <@\r
+        [ name>> token ] keep [ nip ] curry <@\r
     ] map <or-parser> ;\r
 \r
 : 'word-name' ( -- parser )\r
index ec30b2f27c47cc5fa492df4aa92e776c3b1d62b9..d13ae616be54bdb1a25f4c59756191f68a29e943 100755 (executable)
@@ -28,7 +28,7 @@ SYMBOL: log-files
 \r
 : multiline-header 20 CHAR: - <string> ; foldable\r
 \r
-: (write-message) ( msg word-name level multi? -- )\r
+: (write-message) ( msg name>> level multi? -- )\r
     [\r
         "[" write multiline-header write "] " write\r
     ] [\r
@@ -36,7 +36,7 @@ SYMBOL: log-files
     ] if\r
     write bl write ": " write print ;\r
 \r
-: write-message ( msg word-name level -- )\r
+: write-message ( msg name>> level -- )\r
     rot harvest {\r
         { [ dup empty? ] [ 3drop ] }\r
         { [ dup length 1 = ] [ first -rot f (write-message) ] }\r
@@ -47,7 +47,7 @@ SYMBOL: log-files
     } cond ;\r
 \r
 : (log-message) ( msg -- )\r
-    #! msg: { msg word-name level service }\r
+    #! msg: { msg name>> level service }\r
     first4 log-stream [ write-message flush ] with-output-stream* ;\r
 \r
 : try-dispose ( stream -- )\r
index 588f34d3fcc3166f4fa40ad3abf6b9f2cc088c79..cef0676d1228f0e793d44f651e1195022547870b 100755 (executable)
@@ -1,13 +1,16 @@
-! Copyright (C) 2006 Slava Pestov.
+! Copyright (C) 2006, 2008 Slava Pestov.
 ! See http://factorcode.org/license.txt for BSD license.
-IN: math.complex.private
-USING: kernel kernel.private math math.private
+USING: accessors kernel kernel.private math math.private
 math.libm math.functions prettyprint.backend arrays
 math.functions.private sequences parser ;
+IN: math.complex.private
 
 M: real real-part ;
 M: real imaginary-part drop 0 ;
 
+M: complex real-part real>> ;
+M: complex imaginary-part imaginary>> ;
+
 M: complex absq >rect [ sq ] bi@ + ;
 
 : 2>rect ( x y -- xr yr xi yi )
index b780a7c322bc16bc4748e1b6d5dcf02ea0d4599f..903017e371dbcd0b9a516890b105d743089125a5 100755 (executable)
@@ -27,11 +27,11 @@ HELP: ratio
 HELP: rational
 { $class-description "The class of rational numbers, a disjoint union of integers and ratios." } ;
 
-HELP: numerator ( a/b -- a )
+HELP: numerator
 { $values { "a/b" rational } { "a" integer } }
 { $description "Outputs the numerator of a rational number. Acts as the identity on integers." } ;
 
-HELP: denominator ( a/b -- b )
+HELP: denominator
 { $values { "a/b" rational } { "b" "a positive integer" } }
 { $description "Outputs the denominator of a rational number. Always outputs 1 with integers." } ;
 
index 43cbc3fc107d919077ae4d5997c4403aefedaee4..b71a34022aad2ce0b44043a5d6fdbfc7e41b2ea6 100755 (executable)
@@ -1,7 +1,7 @@
-! Copyright (C) 2004, 2006 Slava Pestov.
+! Copyright (C) 2004, 2008 Slava Pestov.
 ! See http://factorcode.org/license.txt for BSD license.
+USING: accessors kernel kernel.private math math.functions math.private ;
 IN: math.ratios
-USING: kernel kernel.private math math.functions math.private ;
 
 : >fraction ( a/b -- a b )
     dup numerator swap denominator ; inline
@@ -37,6 +37,9 @@ M: ratio >fixnum >fraction /i >fixnum ;
 M: ratio >bignum >fraction /i >bignum ;
 M: ratio >float >fraction /f ;
 
+M: ratio numerator numerator>> ;
+M: ratio denominator denominator>> ;
+
 M: ratio < scale < ;
 M: ratio <= scale <= ;
 M: ratio > scale > ;
index fe6945d3f7d65a42fa4f0ecb204eedf9725f41af..96a03bd806e2c8b0da8ee6b0e6c245e319f090b6 100755 (executable)
@@ -157,7 +157,7 @@ M: method-body crossref?
     "forgotten" word-prop not ;
 
 : method-word-name ( specializer generic -- string )
-    [ word-name % "-" % unparse % ] "" make ;
+    [ name>> % "-" % unparse % ] "" make ;
 
 : method-word-props ( specializer generic -- assoc )
     [
index 0bcd639bc1b96e476fe5d106d2d80ccf0ae6b31a..17eab5b0a4deb018a31c3aeab3b962cd79f192b6 100644 (file)
@@ -227,7 +227,7 @@ C: <column> column
     { SQL-DOUBLE [ *double ] }
     { SQL-TINYINT [ *char  ] }
     { SQL-BIGINT [ *longlong ] }
-    [ nip [ "Unknown SQL Type: " % word-name % ] "" make ]
+    [ nip [ "Unknown SQL Type: " % name>> % ] "" make ]
   } case ;
 
 TUPLE: field value column ;
@@ -245,7 +245,7 @@ C: <field> field
     r> drop r> [
       "SQLGetData Failed for Column: " %
       dup column-name %
-      " of type: " % dup column-type word-name %
+      " of type: " % dup column-type name>> %
     ] "" make swap <field>
   ] if ;
 
index ac7080d4517d60f8b9a1e51e44864fe7d2480e25..e3740f9cba4cd6ca944f92a3a426a9a0a4fa1501 100755 (executable)
@@ -86,7 +86,7 @@ M: #label node>quot
     [
         dup param>> literalize ,
         dup #label-loop? "#loop: " "#label: " ?
-        over param>> word-name append comment,
+        over param>> name>> append comment,
     ] 2keep
     node-child swap dataflow>quot , \ call ,  ;
 
@@ -106,7 +106,7 @@ M: #r> node>quot nip out-d>> length \ r> <array> % ;
 
 M: object node>quot
     [
-        dup class word-name %
+        dup class name>> %
         " " %
         dup param>> unparse %
         " " %
@@ -163,7 +163,7 @@ SYMBOL: node-count
     dataflow optimize dataflow>report ;
 
 : word-optimize-report ( word -- report )
-    word-def quot-optimize-report ;
+    def>> quot-optimize-report ;
 
 : report. ( report -- )
     [
index 865ece333c53ec34a225661032e692065dc6c3f8..037427c6a9b9549857ef776580c3ff04b24b6bc7 100755 (executable)
@@ -16,7 +16,7 @@ IN: optimizer.report
     ] tabular-output ;\r
 \r
 : optimizer-report ( -- )\r
-    all-words [ compiled? ] filter\r
+    all-words [ compiled>> ] filter\r
     [\r
         dup [\r
             word-dataflow nip 1 count-optimization-passes\r
index d3aec20d80b60c424376d3475bb55d1adcfc9ebc..162a90122e6bc16e46fb603e86429177c3ffb19f 100644 (file)
@@ -10,7 +10,7 @@ M: timestamp present timestamp>string ;
 
 M: string present ;
 
-M: word present word-name ;
+M: word present name>> ;
 
 M: effect present effect>string ;
 
index fc8ba9821c7977b9916630d58df10a28d0e46dd6..e59d48d439d72564f7e7cbd151372339d6bf0162 100755 (executable)
@@ -128,7 +128,7 @@ M: array noise [ noise ] map vsum ;
 GENERIC: word-noise-factor ( word -- factor )\r
 \r
 M: word word-noise-factor\r
-    word-def quot-noise-factor ;\r
+    def>> quot-noise-factor ;\r
 \r
 M: lambda-word word-noise-factor\r
     "lambda" word-prop quot-noise-factor ;\r
index 51eae24333941e10e7c3b5a481de16b472d1f3bb..4ab75d5f4cd3e7ef5eb994b7d5f7f49a2ceda1d5 100755 (executable)
@@ -16,7 +16,7 @@ IN: report.optimizer
     ] tabular-output ; inline\r
 \r
 : optimizer-measurements ( -- alist )\r
-    all-words [ compiled? ] filter\r
+    all-words [ compiled>> ] filter\r
     [\r
         dup [\r
             word-dataflow nip 1 count-optimization-passes\r
index 89ad6fe2d0a55029eb63b0132b56c9da1bd893b0..e3d13108ade2e963c6b610da79f0115b785c55ae 100755 (executable)
@@ -189,7 +189,7 @@ C: <relation-definition> relation-definition
 
 <PRIVATE
 
-: default-word-name ( relate-word-name word-type -- word-name )
+: default-word-name ( relate-word-name word-type -- name>> )
     {
         { "relate" [ ] }
         { "id-word" [ "-relation" append ] }
@@ -199,14 +199,14 @@ C: <relation-definition> relation-definition
         { "objects" [ "-objects" append ] }
     } case ;
 
-: choose-word-name ( relation-definition given-word-name word-type -- word-name )
+: choose-word-name ( relation-definition given-word-name word-type -- name>> )
     over string? [
         drop nip
     ] [
         nip [ relate>> ] dip default-word-name
     ] if ;
 
-: (define-relation-word) ( id-word word-name definition -- id-word )
+: (define-relation-word) ( id-word name>> definition -- id-word )
     >r create-in over [ execute ] curry r> compose define ;
 
 : define-relation-word ( relation-definition id-word given-word-name word-type definition -- relation-definition id-word )
@@ -225,7 +225,7 @@ C: <relation-definition> relation-definition
     2drop ;
 
 : define-id-word ( relation-definition id-word -- )
-    [ relate>> ] dip tuck word-vocabulary
+    [ relate>> ] dip tuck vocabulary>>
     [ ensure-context ensure-relation ] 2curry define ;
 
 : create-id-word ( relation-definition -- id-word )
index fcf57714d679cea440aeaf22783f46bba186bb18..dc34920bbd89938af80f21d8fb959c7d7a0a2a59 100755 (executable)
@@ -168,21 +168,21 @@ M: string (serialize) ( obj -- )
     [
         CHAR: G write1
         [ add-object ]
-        [ word-def (serialize) ]
-        [ word-props (serialize) ]
+        [ def>> (serialize) ]
+        [ props>> (serialize) ]
         tri
     ] serialize-shared ;
 
 : serialize-word ( word -- )
     CHAR: w write1
-    [ word-name (serialize) ]
-    [ word-vocabulary (serialize) ]
+    [ name>> (serialize) ]
+    [ vocabulary>> (serialize) ]
     bi ;
 
 M: word (serialize) ( obj -- )
     {
         { [ dup t eq? ] [ serialize-true ] }
-        { [ dup word-vocabulary not ] [ serialize-gensym ] }
+        { [ dup vocabulary>> not ] [ serialize-gensym ] }
         [ serialize-word ]
     } cond ;
 
index d6016f280c0bba3783ce29c1b8a3923f7776e23d..6f2ca1377aa926c059c46bf75aa06ff39b4be95a 100755 (executable)
@@ -1,8 +1,8 @@
 ! Copyright (C) 2005, 2008 Slava Pestov.
 ! See http://factorcode.org/license.txt for BSD license.
-USING: kernel words parser io inspector quotations sequences
-prettyprint continuations effects definitions compiler.units
-namespaces assocs tools.walker generic ;
+USING: accessors kernel words parser io inspector quotations
+sequences prettyprint continuations effects definitions
+compiler.units namespaces assocs tools.walker generic ;
 IN: tools.annotations
 
 GENERIC: reset ( word -- )
@@ -24,8 +24,8 @@ M: word reset
         "Cannot annotate a word twice" throw
     ] when
     [
-        over dup word-def "unannotated-def" set-word-prop
-        >r dup word-def r> call define
+        over dup def>> "unannotated-def" set-word-prop
+        >r dup def>> r> call define
     ] with-compilation-unit ; inline
 
 : word-inputs ( word -- seq )
index 3ff22cb0c659257f974f8a42d8752dc7be5cc1ca..604e20f9b1686ebc4fc01ceac7a410614fa6f0d3 100755 (executable)
@@ -1,6 +1,6 @@
 ! Copyright (C) 2005, 2007 Slava Pestov.
 ! See http://factorcode.org/license.txt for BSD license.
-USING: arrays definitions assocs io kernel
+USING: accessors arrays definitions assocs io kernel
 math namespaces prettyprint sequences strings io.styles words
 generic tools.completion quotations parser inspector
 sorting hashtables vocabs parser source-files ;
@@ -10,7 +10,7 @@ IN: tools.crossref
     smart-usage sorted-definitions. ;
 
 : words-matching ( str -- seq )
-    all-words [ dup word-name ] { } map>assoc completions ;
+    all-words [ dup name>> ] { } map>assoc completions ;
 
 : apropos ( str -- )
     words-matching synopsis-alist reverse definitions. ;
index 5a20dd89117805efb68a6fa54634f510159298ca..d03d3142f7d7693ab651061a06d0491c1f9bddf5 100755 (executable)
@@ -62,7 +62,7 @@ IN: tools.deploy.shaker
 
 : strip-word-names ( words -- )
     "Stripping word names" show
-    [ f over set-word-name f swap set-word-vocabulary ] each ;
+    [ f over set-word-name f swap set-vocabulary>> ] each ;
 
 : strip-word-defs ( words -- )
     "Stripping symbolic word definitions" show
@@ -73,8 +73,8 @@ IN: tools.deploy.shaker
     "Stripping word properties" show
     [
         [
-            word-props swap
-            '[ , nip member? not ] assoc-filter
+            props>> swap
+            '[ drop , member? not ] assoc-filter
             f assoc-like
         ] keep set-word-props
     ] with each ;
index 4ae3666829429dfb7b0810f46e915297286f3d49..b7f7ae97a691716b8121e9bd7509f603397bd5c3 100755 (executable)
@@ -1,6 +1,6 @@
-! Copyright (C) 2007 Slava Pestov.
+! Copyright (C) 2007, 2008 Slava Pestov.
 ! See http://factorcode.org/license.txt for BSD license.
-USING: words sequences math prettyprint kernel arrays io
+USING: accessors words sequences math prettyprint kernel arrays io
 io.styles namespaces assocs kernel.private strings combinators
 sorting math.parser vocabs definitions tools.profiler.private
 continuations generic ;
@@ -10,7 +10,7 @@ IN: tools.profiler
     [ t profiling call ] [ f profiling ] [ ] cleanup ;
 
 : counters ( words -- assoc )
-    [ dup profile-counter ] { } map>assoc ;
+    [ dup counter>> ] { } map>assoc ;
 
 GENERIC: (profile.) ( obj -- )
 
@@ -65,7 +65,7 @@ M: method-body (profile.)
     vocabs [
         dup words
         [ "predicating" word-prop not ] filter
-        [ profile-counter ] map sum
+        [ counter>> ] map sum
     ] { } map>assoc counters. ;
 
 : method-profile. ( -- )
index 0319434570de7e4be7374f0cce0fb61b8f134eb8..b3fe97f9080ae5ce47f37f7a8cd026f818a30466 100755 (executable)
@@ -1,9 +1,9 @@
 ! Copyright (C) 2007, 2008 Slava Pestov.
 ! See http://factorcode.org/license.txt for BSD license.
-USING: kernel combinators vocabs vocabs.loader tools.vocabs io
-io.files io.styles help.markup help.stylesheet sequences assocs
-help.topics namespaces prettyprint words sorting definitions
-arrays inspector sets ;
+USING: accessors kernel combinators vocabs vocabs.loader
+tools.vocabs io io.files io.styles help.markup help.stylesheet
+sequences assocs help.topics namespaces prettyprint words
+sorting definitions arrays inspector sets ;
 IN: tools.vocabs.browser
 
 : vocab-status-string ( vocab -- string )
@@ -105,7 +105,7 @@ C: <vocab-author> vocab-author
 
 : vocab-xref ( vocab quot -- vocabs )
     >r dup vocab-name swap words r> map
-    [ [ word? ] filter [ word-vocabulary ] map ] gather natural-sort
+    [ [ word? ] filter [ vocabulary>> ] map ] gather natural-sort
     remove sift [ vocab ] map ; inline
 
 : vocab-uses ( vocab -- vocabs ) [ uses ] vocab-xref ;
index 41f9f8066db33352877db9884cb2c59ec9389607..07a5759af2ca7d4c5db8de6a56680ce0a1a6625d 100755 (executable)
@@ -75,7 +75,7 @@ M: object add-breakpoint ;
         { [ dup hook-generic? ] [ effective-method (step-into-execute) ] }
         { [ dup uses \ suspend swap member? ] [ execute break ] }
         { [ dup primitive? ] [ execute break ] }
-        [ word-def (step-into-quot) ]
+        [ def>> (step-into-quot) ]
     } cond ;
 
 \ (step-into-execute) t "step-into?" set-word-prop
index f341595969803838d32f242bbad3841f246ea802..6a5a4d2c4225b25ebfc461076c4c702895f157f8 100755 (executable)
@@ -1,7 +1,7 @@
 ! Copyright (C) 2006, 2007 Slava Pestov.
 ! See http://factorcode.org/license.txt for BSD license.
-USING: arrays definitions kernel sequences strings math assocs
-words generic namespaces assocs quotations splitting
+USING: accessors arrays definitions kernel sequences strings
+math assocs words generic namespaces assocs quotations splitting
 ui.gestures unicode.case unicode.categories ;
 IN: ui.commands
 
@@ -54,7 +54,7 @@ GENERIC: command-word ( command -- word )
     { { CHAR: - CHAR: \s } } substitute >title ;
 
 M: word command-name ( word -- str )
-    word-name
+    name>> 
     "com-" ?head drop
     dup first Letter? [ rest ] unless
     (command-name) ;
@@ -66,7 +66,7 @@ M: word command-description ( word -- str )
     H{ { +nullary+ f } { +listener+ f } { +description+ f } } ;
 
 : define-command ( word hash -- )
-    [ word-props ] [ default-flags swap assoc-union ] bi* update ;
+    [ props>> ] [ default-flags swap assoc-union ] bi* update ;
 
 : command-quot ( target command -- quot )
     dup 1quotation swap +nullary+ word-prop
index 5bba0952536bcd85b487197ebd30a91a94032dc3..2d696788f2f7c9b26354fbfa4c1bfe177585cfc6 100755 (executable)
@@ -1,6 +1,6 @@
 ! Copyright (C) 2005, 2008 Slava Pestov.
 ! See http://factorcode.org/license.txt for BSD license.
-USING: arrays assocs kernel math models namespaces
+USING: accessors arrays assocs kernel math models namespaces
 sequences words strings system hashtables math.parser
 math.vectors classes.tuple classes ui.gadgets boxes
 calendar alarms symbols combinators sets columns ;
@@ -262,7 +262,7 @@ SYMBOL: drag-timer
 GENERIC: gesture>string ( gesture -- string/f )
 
 : modifiers>string ( modifiers -- string )
-    [ word-name ] map concat >string ;
+    [ name>> ] map concat >string ;
 
 M: key-down gesture>string
     dup key-down-mods modifiers>string
index 48bf01af37b627b75f4a5da3c3f5306f71912782..f998822b3b82ec8268c653c00f76676e7d6d8686 100755 (executable)
@@ -90,7 +90,7 @@ M: listener-operation invoke-command ( target command -- )
 GENERIC: word-completion-string ( word -- string )
 
 M: word word-completion-string
-    word-name ;
+    name>> ;
 
 M: method-body word-completion-string
     "method-generic" word-prop word-completion-string ;
@@ -101,9 +101,9 @@ M: engine-word word-completion-string
     "engine-generic" word-prop word-completion-string ;
 
 : use-if-necessary ( word seq -- )
-    over word-vocabulary [
+    over vocabulary>> [
         2dup assoc-stack pick = [ 2drop ] [
-            >r word-vocabulary vocab-words r> push
+            >r vocabulary>> vocab-words r> push
         ] if
     ] [ 2drop ] if ;
 
index bd9dd351a422b36025d4197a513b56895457c33a..558a56f92a0d5cf38f0a97aef27657cd06da49a8 100755 (executable)
@@ -109,7 +109,7 @@ GENERIC: com-stack-effect ( obj -- )
 
 M: quotation com-stack-effect infer. ;
 
-M: word com-stack-effect word-def com-stack-effect ;
+M: word com-stack-effect def>> com-stack-effect ;
 
 [ word? ] \ com-stack-effect H{
     { +listener+ t }
index af1d2633519c6e24280f4950ca85af5d347e502d..f4320273673cebc3896ae9c1d7cfd7cc47e53f35 100755 (executable)
@@ -1,6 +1,6 @@
 ! Copyright (C) 2006, 2008 Slava Pestov.
 ! See http://factorcode.org/license.txt for BSD license.
-USING: assocs ui.tools.interactor ui.tools.listener
+USING: accessors assocs ui.tools.interactor ui.tools.listener
 ui.tools.workspace help help.topics io.files io.styles kernel
 models namespaces prettyprint quotations sequences sorting
 source-files definitions strings tools.completion tools.crossref
@@ -82,7 +82,7 @@ M: live-search pref-dim* drop { 400 200 } ;
     >r definition-candidates r> [ synopsis ] <live-search> ;
 
 : word-candidates ( words -- candidates )
-    [ dup word-name >lower ] { } map>assoc ;
+    [ dup name>> >lower ] { } map>assoc ;
 
 : <word-search> ( string words limited? -- gadget )
     >r word-candidates r> [ synopsis ] <live-search> ;
@@ -97,7 +97,7 @@ M: live-search pref-dim* drop { 400 200 } ;
 
 : show-word-usage ( workspace word -- )
     "" over smart-usage f <definition-search>
-    "Words and methods using " rot word-name append
+    "Words and methods using " rot name>> append
     show-titled-popup ;
 
 : help-candidates ( seq -- candidates )
index 3fc5d4abcd8fac94968ff0095a5fe47b507d6fd4..dda9a1dc0e5cedeaade575b1177a23a5820ab214 100755 (executable)
@@ -383,7 +383,7 @@ SYMBOL: trace-messages?
     "uint" { "void*" "uint" "long" "long" } "stdcall" [
         [
             pick
-            trace-messages? get-global [ dup windows-message-name word-name print flush ] when
+            trace-messages? get-global [ dup windows-message-name name>> print flush ] when
             wm-handlers get-global at* [ call ] [ drop DefWindowProc ] if
         ] ui-try
      ] alien-callback ;
index 7a5dcc36b6d026cb3cda5c0c9f92b9b3d8fd02a4..d100d6dbc309e111e9f5227615d661218db2fb89 100755 (executable)
@@ -1,4 +1,4 @@
-USING: values kernel sequences assocs io.files
+USING: accessors values kernel sequences assocs io.files
 io.encodings ascii math.ranges io splitting math.parser 
 namespaces byte-arrays locals math sets io.encodings.ascii
 words compiler.units arrays interval-maps unicode.data ;
@@ -14,7 +14,7 @@ SYMBOL: interned
 
 : range, ( value key -- )
     swap interned get
-    [ word-name = ] with find nip 2array , ;
+    [ name>> = ] with find nip 2array , ;
 
 : expand-ranges ( assoc -- interval-map )
     [
index 080820ebd07decc44299061fae147e820216971c..83c3bb5232c50cdbb76b3c3a61daf30baf670601 100644 (file)
@@ -3,7 +3,7 @@
 USING: alien.syntax system sequences vocabs.loader words ;
 IN: unix.kqueue
 
-<< "unix.kqueue." os word-name append require >>
+<< "unix.kqueue." os name>> append require >>
 
 FUNCTION: int kqueue ( ) ;
 
index 0149c6832b420668744b0fb45419335d2313e686..1fb0b83393919ae00f31b2d78f2099605e70fba6 100644 (file)
@@ -21,7 +21,7 @@ ERROR: no-such-state name ;
 M: no-such-state summary drop "No such state" ;
 
 MEMO: string>state ( string -- state )
-    dup states [ word-name = ] with find nip
+    dup states [ name>> = ] with find nip
     [ ] [ no-such-state ] ?if ;
 
 TUPLE: city
index 6f050fc8f88ebe1a7fe626ab402f0a544323295d..7f19898b18ab1eecf0bcb90f6c762a78d9fdd3f9 100755 (executable)
@@ -1,4 +1,4 @@
-USING: kernel parser sequences words effects ;
+USING: accessors kernel parser sequences words effects ;
 IN: values
 
 : VALUE:
@@ -6,10 +6,10 @@ IN: values
     (( -- value )) define-declared ; parsing
 
 : set-value ( value word -- )
-    word-def first set-first ;
+    def>> first set-first ;
 
 : get-value ( word -- value )
-    word-def first first ;
+    def>> first first ;
 
 : change-value ( word quot -- )
     over >r >r get-value r> call r> set-value ; inline
index e3e13be3a9666f873dc4a00e29be469145cf36a2..243cdee2a9dd4deb1900587bee825c89d50e2ac7 100644 (file)
@@ -7,11 +7,11 @@ USING: kernel parser lexer words namespaces sequences quotations ;
 IN: vars
 
 : define-var-getter ( word -- )
-    [ word-name ">" append create-in ] [ [ get ] curry ] bi
+    [ name>> ">" append create-in ] [ [ get ] curry ] bi
     (( -- value )) define-declared ;
 
 : define-var-setter ( word -- )
-    [ word-name ">" prepend create-in ] [ [ set ] curry ] bi
+    [ name>> ">" prepend create-in ] [ [ set ] curry ] bi
     (( value -- )) define-declared ;
 
 : define-var ( str -- )
index 4c20d0fb42bc97286abf049d7e3a63b14312115d..dea84218a0b3068575d081d009e716c62aed4e5c 100644 (file)
@@ -7,7 +7,7 @@ IN: windows.messages
 SYMBOL: windows-messages
 
 "windows.messages" words
-[ word-name "windows-message" head? not ] filter
+[ name>> "windows-message" head? not ] filter
 [ dup execute swap ] { } map>assoc
 windows-messages set-global
 
index e1875bd0c1e423ff308ebfcc94df81b605daee44..91dd1903b46d35795c7f8eb11738a71ed4671a98 100755 (executable)
@@ -12,7 +12,7 @@ M: process-missing error.
     "Tag <" write
     dup process-missing-tag print-name
     "> not implemented on process process " write
-    process-missing-process word-name print ;
+    process-missing-process name>> print ;
 
 : run-process ( tag word -- )
     2dup "xtable" word-prop
index 9167517bb2ed35a3a1c75dfccf3c855f187b7351..028d9b62baa7770adfa2e97c40380150d7efaa18 100755 (executable)
@@ -6,7 +6,7 @@ IN: xmode.code2html
 : htmlize-tokens ( tokens -- )
     [
         [ str>> ] [ id>> ] bi [
-            <span word-name =class span> escape-string write </span>
+            <span name>> =class span> escape-string write </span>
         ] [
             escape-string write
         ] if*
index 018164dfcf6f11f99b3f9cfe7a82e8d4e0c9e653..549362773ac5cb1b414ca8bfee83cef156a6082f 100755 (executable)
@@ -8,7 +8,7 @@ SYMBOL: tokens
 
 { "COMMENT1" "COMMENT2" "COMMENT3" "COMMENT4" "DIGIT" "FUNCTION" "INVALID" "KEYWORD1" "KEYWORD2" "KEYWORD3" "KEYWORD4" "LABEL" "LITERAL1" "LITERAL2" "LITERAL3" "LITERAL4" "MARKUP" "OPERATOR" "END" "NULL" } [
     create-in dup define-symbol
-    dup word-name swap
+    dup name>> swap
 ] H{ } map>assoc tokens set-global
 >>