refactor: rename core.stringhelpers to core.strings.helpers
This commit is contained in:
@@ -28,7 +28,7 @@ uses
|
|||||||
proc.mgr,
|
proc.mgr,
|
||||||
proc.types,
|
proc.types,
|
||||||
core.strings,
|
core.strings,
|
||||||
core.stringhelpers,
|
core.strings.helpers,
|
||||||
core.gfx.fileicons,
|
core.gfx.fileicons,
|
||||||
io.syslog,
|
io.syslog,
|
||||||
debug.tracer,
|
debug.tracer,
|
||||||
|
|||||||
@@ -61,7 +61,7 @@ uses
|
|||||||
driver.video.lvgl,
|
driver.video.lvgl,
|
||||||
driver.storage.types,
|
driver.storage.types,
|
||||||
core.strings,
|
core.strings,
|
||||||
core.stringhelpers,
|
core.strings.helpers,
|
||||||
io.syslog,
|
io.syslog,
|
||||||
debug.tracer,
|
debug.tracer,
|
||||||
core.util, arch.x86.util,
|
core.util, arch.x86.util,
|
||||||
|
|||||||
@@ -39,7 +39,7 @@ uses
|
|||||||
driver.storage.types,
|
driver.storage.types,
|
||||||
driver.storage.filedispatch,
|
driver.storage.filedispatch,
|
||||||
core.strings,
|
core.strings,
|
||||||
core.stringhelpers,
|
core.strings.helpers,
|
||||||
io.syslog,
|
io.syslog,
|
||||||
io.stdio,
|
io.stdio,
|
||||||
debug.tracer,
|
debug.tracer,
|
||||||
|
|||||||
+2
-2
@@ -84,7 +84,7 @@ uses
|
|||||||
driver.storage.mgr,
|
driver.storage.mgr,
|
||||||
driver.storage.test,
|
driver.storage.test,
|
||||||
core.strings,
|
core.strings,
|
||||||
core.stringhelpers,
|
core.strings.helpers,
|
||||||
io.syslog,
|
io.syslog,
|
||||||
driver.exp.testdriver,
|
driver.exp.testdriver,
|
||||||
proc.testprocs,
|
proc.testprocs,
|
||||||
@@ -328,7 +328,7 @@ begin
|
|||||||
{ Run unit tests }
|
{ Run unit tests }
|
||||||
boot.splash.update(65, 'Running test suite...');
|
boot.splash.update(65, 'Running test suite...');
|
||||||
core.strings.UnitTest;
|
core.strings.UnitTest;
|
||||||
core.stringhelpers.UnitTest;
|
core.strings.helpers.UnitTest;
|
||||||
driver.bus.usb.types.UnitTest;
|
driver.bus.usb.types.UnitTest;
|
||||||
driver.bus.usb.core.UnitTest;
|
driver.bus.usb.core.UnitTest;
|
||||||
boot.splash.update(70, 'Running test suite...');
|
boot.splash.update(70, 'Running test suite...');
|
||||||
|
|||||||
@@ -14,7 +14,7 @@ interface
|
|||||||
|
|
||||||
uses
|
uses
|
||||||
core.strings,
|
core.strings,
|
||||||
core.stringhelpers;
|
core.strings.helpers;
|
||||||
|
|
||||||
const
|
const
|
||||||
{ File-type icon PUA constants (U+E000..E078) — rendered by asuro_icons_* }
|
{ File-type icon PUA constants (U+E000..E078) — rendered by asuro_icons_* }
|
||||||
|
|||||||
@@ -9,7 +9,7 @@
|
|||||||
|
|
||||||
@author(Aaron Hance <ah@aaronhance.me>)
|
@author(Aaron Hance <ah@aaronhance.me>)
|
||||||
}
|
}
|
||||||
unit core.stringhelpers;
|
unit core.strings.helpers;
|
||||||
|
|
||||||
interface
|
interface
|
||||||
|
|
||||||
@@ -62,7 +62,7 @@ implementation
|
|||||||
|
|
||||||
uses
|
uses
|
||||||
driver.storage.vfs, driver.storage.types, memory.heap, core.strings,
|
driver.storage.vfs, driver.storage.types, memory.heap, core.strings,
|
||||||
core.stringhelpers, debug.tracer, io.syslog, core.util, arch.x86.util;
|
core.strings.helpers, debug.tracer, io.syslog, core.util, arch.x86.util;
|
||||||
|
|
||||||
type
|
type
|
||||||
THandlerEntry = record
|
THandlerEntry = record
|
||||||
|
|||||||
Reference in New Issue
Block a user