2019-03-20 15:55:57 -07:00
|
|
|
#!/usr/bin/env nomsu -V7.0.0
|
|
|
|
###
|
2018-10-31 03:54:16 -07:00
|
|
|
This file defines upgrades from Nomsu <4.8.10 to 4.8.10 (renaming "action" -> "means")
|
2019-01-10 16:33:37 -08:00
|
|
|
use "compatibility/compatibility"
|
2018-10-31 03:54:16 -07:00
|
|
|
|
2018-11-08 15:23:22 -08:00
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
2018-12-30 19:04:34 -08:00
|
|
|
upgrade action "local action" to "4.8.10" via
|
2019-03-22 14:25:18 -07:00
|
|
|
for $tree:
|
2018-12-14 20:21:03 -08:00
|
|
|
$spec = $tree.3
|
|
|
|
$body = $tree.4
|
|
|
|
if $spec.type is:
|
2018-10-31 03:54:16 -07:00
|
|
|
"List":
|
2019-03-20 15:55:57 -07:00
|
|
|
if (#$spec == 1):
|
2019-03-20 16:41:44 -07:00
|
|
|
return \(\$spec.1 means \$body)
|
2018-10-31 03:54:16 -07:00
|
|
|
..else:
|
2019-03-20 16:41:44 -07:00
|
|
|
return \(\$spec all mean \$body)
|
2018-11-11 15:50:46 -08:00
|
|
|
|
2018-10-31 03:54:16 -07:00
|
|
|
else:
|
2019-03-20 16:41:44 -07:00
|
|
|
return \(\$spec means \$body)
|
2018-10-31 03:54:16 -07:00
|
|
|
|
2018-12-30 19:04:34 -08:00
|
|
|
upgrade action "action" to "4.8.10" via
|
2019-03-22 14:25:18 -07:00
|
|
|
for $tree:
|
2018-12-14 20:21:03 -08:00
|
|
|
$spec = $tree.2
|
|
|
|
$body = $tree.3
|
|
|
|
if $body:
|
|
|
|
if $spec.type is:
|
2018-11-09 17:02:39 -08:00
|
|
|
"List":
|
2019-03-20 15:55:57 -07:00
|
|
|
if (#$spec == 1):
|
2019-03-20 16:41:44 -07:00
|
|
|
return \(externally \$spec.1 means \$body)
|
2018-11-09 17:02:39 -08:00
|
|
|
..else:
|
2019-03-20 16:41:44 -07:00
|
|
|
return \(externally \$spec all mean \$body)
|
2018-11-11 15:50:46 -08:00
|
|
|
|
2018-11-09 17:02:39 -08:00
|
|
|
else:
|
2019-03-20 16:41:44 -07:00
|
|
|
return \(externally \$spec means \$body)
|
2018-11-09 17:02:39 -08:00
|
|
|
..else:
|
2019-03-20 16:41:44 -07:00
|
|
|
return \((\$spec)'s meaning)
|
2018-10-31 03:54:16 -07:00
|
|
|
|
2018-12-30 19:04:34 -08:00
|
|
|
upgrade action "compile 1 to" to "4.8.10" via
|
2019-03-22 14:25:18 -07:00
|
|
|
for $tree:
|
2018-12-14 20:21:03 -08:00
|
|
|
$spec = $tree.2
|
|
|
|
$body = $tree.4
|
|
|
|
if $spec.type is:
|
2018-10-31 03:54:16 -07:00
|
|
|
"List":
|
2019-03-20 15:55:57 -07:00
|
|
|
if (#$spec == 1):
|
2019-03-20 16:41:44 -07:00
|
|
|
return \(\$spec.1 compiles to \$body)
|
2018-10-31 03:54:16 -07:00
|
|
|
..else:
|
2019-03-20 16:41:44 -07:00
|
|
|
return \(\$spec all compile to \$body)
|
2018-11-11 15:50:46 -08:00
|
|
|
|
2018-10-31 03:54:16 -07:00
|
|
|
else:
|
2019-03-20 16:41:44 -07:00
|
|
|
return \(\$spec compiles to \$body)
|
2018-10-31 03:54:16 -07:00
|
|
|
|
2018-12-30 19:04:34 -08:00
|
|
|
upgrade action "parse 1 as" to "4.8.10" via
|
2019-03-22 14:25:18 -07:00
|
|
|
for $tree:
|
2018-12-14 20:21:03 -08:00
|
|
|
$spec = $tree.2
|
|
|
|
$body = $tree.4
|
|
|
|
if $spec.type is:
|
2018-10-31 03:54:16 -07:00
|
|
|
"List":
|
2019-03-20 15:55:57 -07:00
|
|
|
if (#$spec == 1):
|
2019-03-20 16:41:44 -07:00
|
|
|
return \(\$spec.1 parses as \$body)
|
2018-10-31 03:54:16 -07:00
|
|
|
..else:
|
2019-03-20 16:41:44 -07:00
|
|
|
return \(\$spec all parse as \$body)
|
2018-11-11 15:50:46 -08:00
|
|
|
|
2018-10-31 03:54:16 -07:00
|
|
|
else:
|
2019-03-20 16:41:44 -07:00
|
|
|
return \(\$spec parse as \$body)
|
2018-10-31 03:54:16 -07:00
|
|
|
|
2018-12-14 20:21:03 -08:00
|
|
|
upgrade action (compile as $) to "4.8.10" as (what $ compiles to)
|
2019-03-22 14:25:18 -07:00
|
|
|
upgrade action (remove action $) to "4.8.10" as (($'s meaning) = (nil))
|