nomsu/lib/compatibility/3.8.nom

24 lines
1.1 KiB
Plaintext
Raw Normal View History

#!/usr/bin/env nomsu -V6.15.13.8
2018-09-14 19:18:18 -07:00
#
This file defines upgrades from Nomsu <3.8 to 3.8 (Text method changes)
2019-01-11 15:28:41 -08:00
use "compatibility/compatibility"
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2018-12-30 19:04:34 -08:00
upgrade action [$texts joined with $glue] to "3.8" as ($texts, joined with $glue)
upgrade action [$texts joined, joined $texts] to "3.8" as ($texts, joined)
upgrade action [byte $i of $text] to "3.8" as ($text, byte $i)
upgrade action [bytes $start to $stop of $text] to "3.8" as
$text, bytes $start to $stop
upgrade action [bytes of $text] to "3.8" as ($text, bytes)
upgrade action [capitalized $text, $text capitalized] to "3.8" as
$text, capitalized
upgrade action [uppercase $text, $text uppercase] to "3.8" as ($text, uppercase)
upgrade action [
2018-12-14 20:21:03 -08:00
$text with $sub instead of $patt, $text with $patt replaced by $sub
$text s/ $patt / $sub
2018-12-30 19:04:34 -08:00
] to "3.8" as ($text, with $patt -> $sub)
upgrade action [$text matches $pattern] to "3.8" as ($text, matches $pattern)
upgrade action [$text matching $pattern] to "3.8" as ($text, matching $pattern).1