Change lang.text_content to lang.text

This commit is contained in:
Bruce Hill 2025-03-01 16:53:58 -05:00
parent b0483e8429
commit 37e96dbda5
8 changed files with 10 additions and 10 deletions

View File

@ -3722,7 +3722,7 @@ CORD compile(env_t *env, ast_t *ast)
}
case TextType: {
const char *lang = Match(value_t, TextType)->lang;
if (lang && streq(f->field, "text_content")) {
if (lang && streq(f->field, "text")) {
CORD text = compile_to_pointer_depth(env, f->fielded, 0, false);
return CORD_all("((Text_t)", text, ")");
} else if (streq(f->field, "length")) {

View File

@ -36,7 +36,7 @@ page := $HTML"
Hello $username! How are you?
</body></html>
"
say(page.text_content)
say(page.text)
```
What we _don't_ want to happen is to get a page that looks like:

View File

@ -65,7 +65,7 @@ lang Base64:
return Text.from_bytes(b64:decode_bytes() or return none)
func decode_bytes(b64:Base64 -> [Byte]?):
bytes := b64.text_content:bytes()
bytes := b64.text:bytes()
output := &[Byte(0) for _ in bytes.length/4 * 3]
src := Int64(1)
dest := Int64(1)
@ -94,4 +94,4 @@ func main(input=(/dev/stdin), decode=no):
say(b:decode_text()!)
else:
text := input:read()!
say(Base64.parse(text)!.text_content)
say(Base64.parse(text)!.text)

View File

@ -7,7 +7,7 @@ _HELP := "
"
func parse_ini(path:Path -> {Text,{Text,Text}}):
text := path:read() or exit("Could not read INI file: $\[31;1]$(path.text_content)$\[]")
text := path:read() or exit("Could not read INI file: $\[31;1]$(path.text)$\[]")
sections := @{:Text,@{Text,Text}}
current_section := @{:Text,Text}

View File

@ -66,9 +66,9 @@ func _printable_name(dep:Dependency -> Text):
is File(f):
f = f:relative()
if f:exists():
return "$(f.text_content)"
return "$(f.text)"
else:
return "$(\x1b)[31;1m$(f.text_content) (not found)$(\x1b)[m"
return "$(\x1b)[31;1m$(f.text) (not found)$(\x1b)[m"
func _draw_tree(dep:Dependency, dependencies:{Dependency,{Dependency}}, already_printed:@{Dependency}, prefix="", is_last=yes):
if already_printed:has(dep):

View File

@ -82,7 +82,7 @@ func main(files:[Path], width=80, inplace=no, min_split=3, rewrap=yes, hyphen=UN
files = [(/dev/stdin)]
for file in files:
text := file:read() or exit("Could not read file: $(file.text_content)")
text := file:read() or exit("Could not read file: $(file.text)")
if rewrap:
text = unwrap(text)

View File

@ -28,7 +28,7 @@ func main():
>> HTML.HEADER[1]
= $HTML"<"
>> HTML.HEADER.text_content
>> HTML.HEADER.text
= "<!DOCTYPE HTML>"
>> user := "I <3 hax"

View File

@ -639,7 +639,7 @@ type_t *get_field_type(type_t *t, const char *field_name)
case PointerType:
return get_field_type(Match(t, PointerType)->pointed, field_name);
case TextType: {
if (Match(t, TextType)->lang && streq(field_name, "text_content"))
if (Match(t, TextType)->lang && streq(field_name, "text"))
return Type(TextType);
else if (streq(field_name, "length")) return INT_TYPE;
return NULL;