factor: Clean up wrong form of specialized-arrays in using lists.
parent
9d732a4ccb
commit
c8d63c56a9
|
@ -1,7 +1,6 @@
|
||||||
USING: alien.c-types alien.data compiler.tree.debugger
|
USING: alien.c-types alien.data compiler.tree.debugger
|
||||||
io.encodings.ascii io.files io.mmap kernel locals math sequences
|
io.encodings.ascii io.files io.mmap kernel locals math sequences
|
||||||
sequences.private specialized-arrays
|
sequences.private specialized-arrays tools.test ;
|
||||||
specialized-arrays.instances.alien.c-types.uint tools.test ;
|
|
||||||
|
|
||||||
SPECIALIZED-ARRAY: uint
|
SPECIALIZED-ARRAY: uint
|
||||||
|
|
||||||
|
|
|
@ -1,10 +1,11 @@
|
||||||
! Copyright (C) 2009 Slava Pestov.
|
! Copyright (C) 2009 Slava Pestov.
|
||||||
! See http://factorcode.org/license.txt for BSD license.
|
! See http://factorcode.org/license.txt for BSD license.
|
||||||
USING: accessors colors.constants kernel
|
USING: accessors colors.constants kernel tools.test
|
||||||
specialized-arrays.instances.alien.c-types.float tools.test
|
|
||||||
ui.gadgets.labels ui.pens.caching ui.pens.gradient ;
|
ui.gadgets.labels ui.pens.caching ui.pens.gradient ;
|
||||||
IN: ui.pens.caching.tests
|
IN: ui.pens.caching.tests
|
||||||
|
|
||||||
|
SPECIALIZED-ARRAY: float
|
||||||
|
|
||||||
! compute-pen
|
! compute-pen
|
||||||
{
|
{
|
||||||
{ 0 0 }
|
{ 0 0 }
|
||||||
|
|
|
@ -4,11 +4,11 @@
|
||||||
USING: accessors alien.accessors alien.data alien.strings
|
USING: accessors alien.accessors alien.data alien.strings
|
||||||
classes.struct io.encodings.utf16n kernel make math namespaces
|
classes.struct io.encodings.utf16n kernel make math namespaces
|
||||||
prettyprint sequences specialized-arrays
|
prettyprint sequences specialized-arrays
|
||||||
specialized-arrays.instances.alien.c-types.ushort
|
|
||||||
ui.backend.windows ui.gadgets.worlds ui.gestures
|
ui.backend.windows ui.gadgets.worlds ui.gestures
|
||||||
ui.tools.listener windows.com windows.com.wrapper
|
ui.tools.listener windows.com windows.com.wrapper
|
||||||
windows.dropfiles windows.kernel32 windows.ole32 windows.shell32
|
windows.dropfiles windows.kernel32 windows.ole32 windows.shell32
|
||||||
windows.types ;
|
windows.types ;
|
||||||
|
SPECIALIZED-ARRAY: ushort
|
||||||
SPECIALIZED-ARRAY: WCHAR
|
SPECIALIZED-ARRAY: WCHAR
|
||||||
IN: windows.dragdrop-listener
|
IN: windows.dragdrop-listener
|
||||||
|
|
||||||
|
|
|
@ -1,11 +1,8 @@
|
||||||
! Copyright (C) 2006, 2008 Doug Coleman.
|
! Copyright (C) 2006, 2008 Doug Coleman.
|
||||||
! See http://factorcode.org/license.txt for BSD license.
|
! See http://factorcode.org/license.txt for BSD license.
|
||||||
USING: alien alien.c-types alien.data alien.strings
|
USING: alien alien.c-types alien.data alien.strings alien.syntax
|
||||||
alien.syntax classes.struct io.backend kernel
|
classes.struct io.backend kernel windows windows.com
|
||||||
specialized-arrays
|
windows.com.syntax windows.kernel32 windows.ole32 windows.types ;
|
||||||
specialized-arrays.instances.alien.c-types.ushort windows
|
|
||||||
windows.com windows.com.syntax windows.kernel32 windows.ole32
|
|
||||||
windows.types ;
|
|
||||||
IN: windows.shell32
|
IN: windows.shell32
|
||||||
|
|
||||||
CONSTANT: CSIDL_DESKTOP 0x00
|
CONSTANT: CSIDL_DESKTOP 0x00
|
||||||
|
|
Loading…
Reference in New Issue