2018-11-08 15:23:22 -08:00
|
|
|
#!/usr/bin/env nomsu -V4.9.11.6
|
|
|
|
#
|
|
|
|
This file defines upgrades from Nomsu <4.9 to 4.9
|
|
|
|
use "compatibility/compatibility.nom"
|
|
|
|
|
2018-11-09 17:02:39 -08:00
|
|
|
upgrade action "local action" to "4.9" via (..)
|
2018-11-08 15:23:22 -08:00
|
|
|
[%tree, %end_version] ->:
|
|
|
|
%spec = %tree.3
|
|
|
|
%body = %tree.4
|
|
|
|
if %spec.type is:
|
|
|
|
"List":
|
|
|
|
if ((size of %spec) == 1):
|
|
|
|
return \(%spec.1 means %body)
|
|
|
|
..else:
|
|
|
|
return \(%spec all mean %body)
|
|
|
|
else:
|
|
|
|
return \(%spec means %body)
|
|
|
|
|
2018-11-09 17:02:39 -08:00
|
|
|
upgrade action "action" to "4.9" via (..)
|
2018-11-08 15:23:22 -08:00
|
|
|
[%tree, %end_version] ->:
|
|
|
|
%spec = %tree.2
|
|
|
|
%body = %tree.3
|
2018-11-09 17:02:39 -08:00
|
|
|
if %body:
|
|
|
|
if %spec.type is:
|
|
|
|
"List":
|
|
|
|
if ((size of %spec) == 1):
|
|
|
|
return \(externally %spec.1 means %body)
|
|
|
|
..else:
|
|
|
|
return \(externally %spec all mean %body)
|
|
|
|
else:
|
|
|
|
return \(externally %spec means %body)
|
|
|
|
..else:
|
|
|
|
return \(%spec's meaning)
|
2018-11-08 15:23:22 -08:00
|
|
|
|
2018-11-09 17:02:39 -08:00
|
|
|
upgrade action "compile 1 to" to "4.9" via (..)
|
2018-11-08 15:23:22 -08:00
|
|
|
[%tree, %end_version] ->:
|
|
|
|
%spec = %tree.2
|
|
|
|
%body = %tree.4
|
|
|
|
if %spec.type is:
|
|
|
|
"List":
|
|
|
|
if ((size of %spec) == 1):
|
|
|
|
return \(%spec.1 compiles to %body)
|
|
|
|
..else:
|
|
|
|
return \(%spec all compile to %body)
|
|
|
|
else:
|
|
|
|
return \(%spec compiles to %body)
|
|
|
|
|
2018-11-09 17:02:39 -08:00
|
|
|
upgrade action "parse 1 as" to "4.9" via (..)
|
2018-11-08 15:23:22 -08:00
|
|
|
[%tree, %end_version] ->:
|
|
|
|
%spec = %tree.2
|
|
|
|
%body = %tree.4
|
|
|
|
if %spec.type is:
|
|
|
|
"List":
|
|
|
|
if ((size of %spec) == 1):
|
|
|
|
return \(%spec.1 parses as %body)
|
|
|
|
..else:
|
|
|
|
return \(%spec all parse as %body)
|
|
|
|
else:
|
|
|
|
return \(%spec parse as %body)
|
|
|
|
|
|
|
|
upgrade action (compile as %) to "4.9" as (what % compiles to)
|
|
|
|
upgrade action (remove action %) to "4.9" as ((%'s meaning) = (nil))
|
|
|
|
upgrade action (if %) to "4.9" as (when %)
|