From 378c5315b553ce814867c9698bff84780b32dade Mon Sep 17 00:00:00 2001 From: Doug Coleman Date: Wed, 22 Jun 2016 09:25:15 -0700 Subject: [PATCH] factor: qualified: to QUALIFIED: --- language/compiler/cfg/stacks/padding/padding.factor | 2 +- language/compiler/codegen/gc-maps/gc-maps-tests.factor | 2 +- language/compiler/tests/callstack-overflow.factor | 2 +- language/compiler/tests/codegen.factor | 2 +- language/compiler/tests/redefine24.factor | 2 +- language/compiler/tree/def-use/def-use.factor | 2 +- language/io/backend/unix/unix.factor | 2 +- language/io/pipes/unix/unix.factor | 2 +- language/multi-methods/multi-methods.factor | 2 +- language/prettyprint/backend/backend.factor | 2 +- language/vm/vm-tests.factor | 2 +- libs/fuel/xref/xref-tests.factor | 2 +- libs/http/server/static/static.factor | 2 +- libs/images/png/png.factor | 2 +- libs/imap/imap.factor | 2 +- libs/logging/insomniac/insomniac.factor | 2 +- libs/unicode/case/case.factor | 2 +- tools/tools/deploy/shaker/shaker.factor | 2 +- .../code-heap-reader/code-heap-reader.factor | 2 +- .../tools/image-analyzer/gc-info/gc-info-tests.factor | 10 +++++----- 20 files changed, 24 insertions(+), 24 deletions(-) diff --git a/language/compiler/cfg/stacks/padding/padding.factor b/language/compiler/cfg/stacks/padding/padding.factor index b52058682b..d7ed3d5d4d 100644 --- a/language/compiler/cfg/stacks/padding/padding.factor +++ b/language/compiler/cfg/stacks/padding/padding.factor @@ -4,7 +4,7 @@ USING: accessors arrays assocs compiler.cfg.dataflow-analysis compiler.cfg.instructions compiler.cfg.linearization compiler.cfg.registers compiler.cfg.stacks.local fry kernel math math.order namespaces sequences ; -qualified: sets +QUALIFIED: sets IN: compiler.cfg.stacks.padding ! !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! diff --git a/language/compiler/codegen/gc-maps/gc-maps-tests.factor b/language/compiler/codegen/gc-maps/gc-maps-tests.factor index 52d212949d..0de9935655 100644 --- a/language/compiler/codegen/gc-maps/gc-maps-tests.factor +++ b/language/compiler/codegen/gc-maps/gc-maps-tests.factor @@ -3,7 +3,7 @@ compiler.cfg.instructions compiler.cfg.stack-frame compiler.cfg.utilities compiler.codegen.gc-maps compiler.codegen.relocation cpu.architecture cpu.x86 byte-arrays make namespaces kernel layouts math sequences specialized-arrays system tools.test ; -qualified: vm +QUALIFIED: vm specialized-array: uint IN: compiler.codegen.gc-maps.tests diff --git a/language/compiler/tests/callstack-overflow.factor b/language/compiler/tests/callstack-overflow.factor index 4cef5da782..94a9ae5b03 100644 --- a/language/compiler/tests/callstack-overflow.factor +++ b/language/compiler/tests/callstack-overflow.factor @@ -1,7 +1,7 @@ USING: accessors classes.struct continuations kernel kernel.private literals math memory sequences system threads.private tools.dispatch.private tools.test ; -qualified: vm +QUALIFIED: vm IN: compiler.tests.callstack-overflow ! This test file is for all callstack overflow-related problems. diff --git a/language/compiler/tests/codegen.factor b/language/compiler/tests/codegen.factor index 568b191e27..b712f32cf2 100644 --- a/language/compiler/tests/codegen.factor +++ b/language/compiler/tests/codegen.factor @@ -7,7 +7,7 @@ make alien.c-types alien.data combinators.short-circuit math.order math.libm math.parser math.functions alien.syntax memory stack-checker ; FROM: math => float ; -qualified: namespaces.private +QUALIFIED: namespaces.private IN: compiler.tests.codegen ! Originally, this file did black box testing of templating diff --git a/language/compiler/tests/redefine24.factor b/language/compiler/tests/redefine24.factor index e63f3770ad..29fe75c539 100644 --- a/language/compiler/tests/redefine24.factor +++ b/language/compiler/tests/redefine24.factor @@ -1,5 +1,5 @@ USING: alien alien.syntax eval math tools.test ; -qualified: alien.c-types +QUALIFIED: alien.c-types IN: compiler.tests.redefine24 TYPEDEF: alien.c-types:int type-1 ; diff --git a/language/compiler/tree/def-use/def-use.factor b/language/compiler/tree/def-use/def-use.factor index d2cc476e52..3e10a9ff4d 100644 --- a/language/compiler/tree/def-use/def-use.factor +++ b/language/compiler/tree/def-use/def-use.factor @@ -2,7 +2,7 @@ ! See http://factorcode.org/license.txt for BSD license. USING: accessors assocs compiler.tree compiler.tree.combinators fry kernel namespaces sequences stack-checker.branches ; -qualified: sets +QUALIFIED: sets IN: compiler.tree.def-use SYMBOL: def-use diff --git a/language/io/backend/unix/unix.factor b/language/io/backend/unix/unix.factor index 64db6019ef..217a77ea84 100755 --- a/language/io/backend/unix/unix.factor +++ b/language/io/backend/unix/unix.factor @@ -6,7 +6,7 @@ io.backend io.backend.unix.multiplexers io.buffers io.files io.ports io.timeouts kernel kernel.private libc locals make math namespaces sequences summary system threads unix unix.ffi unix.stat unix.types ; -qualified: io +QUALIFIED: io IN: io.backend.unix CONSTANT: file-mode 0o0666 ; diff --git a/language/io/pipes/unix/unix.factor b/language/io/pipes/unix/unix.factor index d4ebc64a02..92058e805f 100644 --- a/language/io/pipes/unix/unix.factor +++ b/language/io/pipes/unix/unix.factor @@ -2,7 +2,7 @@ ! See http://factorcode.org/license.txt for BSD license. USING: alien.c-types alien.data system kernel unix math sequences io.backend.unix io.ports libc specialized-arrays accessors unix.ffi ; -qualified: io.pipes +QUALIFIED: io.pipes SPECIALIZED-ARRAY: int IN: io.pipes.unix diff --git a/language/multi-methods/multi-methods.factor b/language/multi-methods/multi-methods.factor index 75f9a1fc80..893d49347a 100644 --- a/language/multi-methods/multi-methods.factor +++ b/language/multi-methods/multi-methods.factor @@ -246,7 +246,7 @@ SYNTAX: \ M: define ; ! Definition protocol. We qualify core generics here -qualified: syntax +QUALIFIED: syntax syntax:M: generic definer drop \ GENERIC: f ; diff --git a/language/prettyprint/backend/backend.factor b/language/prettyprint/backend/backend.factor index 4625d9a60e..4075a56c50 100644 --- a/language/prettyprint/backend/backend.factor +++ b/language/prettyprint/backend/backend.factor @@ -7,7 +7,7 @@ hash-sets hashtables io.pathnames io.styles kernel make math math.order math.parser namespaces prettyprint.config prettyprint.custom prettyprint.sections prettyprint.stylesheet quotations sbufs sequences strings vectors words ; -qualified: sets +QUALIFIED: sets IN: prettyprint.backend M: effect pprint* effect>string text ; diff --git a/language/vm/vm-tests.factor b/language/vm/vm-tests.factor index 3dc7995ced..22792543e6 100644 --- a/language/vm/vm-tests.factor +++ b/language/vm/vm-tests.factor @@ -1,6 +1,6 @@ USING: accessors classes.struct kernel kernel.private math math.order tools.test ; -qualified: vm +QUALIFIED: vm IN: vm.tests : get-ctx ( -- ctx ) diff --git a/libs/fuel/xref/xref-tests.factor b/libs/fuel/xref/xref-tests.factor index d5d5daca68..1beea0c744 100644 --- a/libs/fuel/xref/xref-tests.factor +++ b/libs/fuel/xref/xref-tests.factor @@ -1,6 +1,6 @@ USING: arrays definitions fuel.xref fuel.xref.private io.pathnames kernel math sequences sets tools.test ; -qualified: tools.crossref +QUALIFIED: tools.crossref IN: fuel.xref.tests { t } [ diff --git a/libs/http/server/static/static.factor b/libs/http/server/static/static.factor index eddf3d6fd5..e52f06c71e 100644 --- a/libs/http/server/static/static.factor +++ b/libs/http/server/static/static.factor @@ -10,7 +10,7 @@ io.files.info io.directories io.pathnames io.encodings.binary fry xml.entities destructors urls html xml.syntax html.templates.fhtml http http.server http.server.responses http.server.redirection xml.writer ; -qualified: sets +QUALIFIED: sets TUPLE: file-responder root hook special index-names allow-listings ; diff --git a/libs/images/png/png.factor b/libs/images/png/png.factor index d96f851341..670786583a 100644 --- a/libs/images/png/png.factor +++ b/libs/images/png/png.factor @@ -5,7 +5,7 @@ compression.inflate fry grouping images images.loader io io.binary io.encodings.8-bit.latin1 io.encodings.ascii io.encodings.binary io.encodings.string io.streams.byte-array io.streams.throwing kernel locals math math.bitwise math.functions sequences sorting splitting ; -qualified: bitstreams +QUALIFIED: bitstreams IN: images.png SINGLETON: png-image diff --git a/libs/imap/imap.factor b/libs/imap/imap.factor index 7de377c1e4..c8704e2abe 100644 --- a/libs/imap/imap.factor +++ b/libs/imap/imap.factor @@ -3,7 +3,7 @@ formatting fry grouping io io.crlf io.encodings.ascii io.encodings.binary io.encodings.string io.encodings.utf7 io.encodings.utf8 io.sockets io.sockets.secure io.streams.duplex io.streams.string kernel math math.parser sequences splitting strings ; -qualified: pcre +QUALIFIED: pcre IN: imap ERROR: imap4-error ind data ; diff --git a/libs/logging/insomniac/insomniac.factor b/libs/logging/insomniac/insomniac.factor index 9d1813dfd4..786752f01b 100644 --- a/libs/logging/insomniac/insomniac.factor +++ b/libs/logging/insomniac/insomniac.factor @@ -3,7 +3,7 @@ USING: logging.analysis logging.server logging smtp kernel io.files io.streams.string namespaces make timers assocs io.encodings.utf8 accessors calendar sequences locals ; -qualified: io.sockets +QUALIFIED: io.sockets IN: logging.insomniac SYMBOL: insomniac-sender diff --git a/libs/unicode/case/case.factor b/libs/unicode/case/case.factor index 198fedfe27..43f149664d 100644 --- a/libs/unicode/case/case.factor +++ b/libs/unicode/case/case.factor @@ -2,7 +2,7 @@ ! See http://factorcode.org/license.txt for BSD license. USING: combinators.short-circuit kernel locals namespaces sbufs sequences splitting unicode.categories unicode.data ; -qualified: ascii +QUALIFIED: ascii IN: unicode.case SYMBOL: locale ! Just casing locale, or overall? diff --git a/tools/tools/deploy/shaker/shaker.factor b/tools/tools/deploy/shaker/shaker.factor index d60a78874a..698f481f2a 100755 --- a/tools/tools/deploy/shaker/shaker.factor +++ b/tools/tools/deploy/shaker/shaker.factor @@ -12,7 +12,7 @@ tools.deploy.config combinators combinators.private classes vocabs.loader.private classes.builtin slots.private grouping command-line io.pathnames memoize namespaces.private hashtables locals source-files ; -qualified: classes.private +QUALIFIED: classes.private IN: tools.deploy.shaker ! This file is some hairy shit. diff --git a/tools/tools/image-analyzer/code-heap-reader/code-heap-reader.factor b/tools/tools/image-analyzer/code-heap-reader/code-heap-reader.factor index d709f14cb5..1a9dc9b046 100644 --- a/tools/tools/image-analyzer/code-heap-reader/code-heap-reader.factor +++ b/tools/tools/image-analyzer/code-heap-reader/code-heap-reader.factor @@ -1,7 +1,7 @@ USING: accessors alien.c-types classes.struct io kernel math math.bitwise tools.image-analyzer.gc-info tools.image-analyzer.vm ; IN: tools.image-analyzer.code-heap-reader -qualified: layouts +QUALIFIED: layouts : free? ( code-block -- ? ) header>> 1 mask? ; diff --git a/tools/tools/image-analyzer/gc-info/gc-info-tests.factor b/tools/tools/image-analyzer/gc-info/gc-info-tests.factor index f8588b04b1..3981f7451b 100644 --- a/tools/tools/image-analyzer/gc-info/gc-info-tests.factor +++ b/tools/tools/image-analyzer/gc-info/gc-info-tests.factor @@ -7,11 +7,11 @@ random sequences sequences.generalizations tools.image-analyzer.gc-info tools.image-analyzer.utils tools.test vm vocabs words ; IN: tools.image-analyzer.gc-info.tests -qualified: cpu.x86.features.private -qualified: crypto.aes.utils -qualified: effects -qualified: gtk-samples.opengl -qualified: opencl +QUALIFIED: cpu.x86.features.private +QUALIFIED: crypto.aes.utils +QUALIFIED: effects +QUALIFIED: gtk-samples.opengl +QUALIFIED: opencl : normal? ( word -- ? ) { [ generic? ] [ primitive? ] [ inline? ] [ no-compile? ] } 1|| not ;