rm TotallyNotJson

TotallyNotJson.roc now lives on the farm in virtual-dom-wip as Json.roc.
Any reference in stdlib or builtins has been removed, as well as the
last places it was used (in python/ruby-interop examples).
This commit is contained in:
shua 2024-06-28 15:23:48 +02:00
parent 67f555feea
commit d90da3af52
No known key found for this signature in database
GPG key ID: 73387DA37055770F
37 changed files with 114 additions and 144 deletions

File diff suppressed because it is too large Load diff

View file

@ -10,6 +10,5 @@ package [
Encode,
Hash,
Box,
TotallyNotJson,
Inspect,
] {}

View file

@ -16,7 +16,6 @@ pub fn module_source(module_id: ModuleId) -> &'static str {
ModuleId::DECODE => DECODE,
ModuleId::HASH => HASH,
ModuleId::INSPECT => INSPECT,
ModuleId::JSON => JSON,
_ => internal_error!(
"ModuleId {:?} is not part of the standard library",
module_id
@ -36,4 +35,3 @@ const ENCODE: &str = include_str!("../roc/Encode.roc");
const DECODE: &str = include_str!("../roc/Decode.roc");
const HASH: &str = include_str!("../roc/Hash.roc");
const INSPECT: &str = include_str!("../roc/Inspect.roc");
const JSON: &str = include_str!("../roc/TotallyNotJson.roc");