Skip to content

Commit

Permalink
Updating: very very minorly
Browse files Browse the repository at this point in the history
  • Loading branch information
githwxi committed Sep 9, 2024
1 parent 1b021bc commit 8c236d5
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
3 changes: 3 additions & 0 deletions srcgen2/prelude/HATS/prelude_dats.hats
Original file line number Diff line number Diff line change
Expand Up @@ -67,9 +67,11 @@ This one is included by [DATS/unsfx00.dats]
#staload _ = "prelude/DATS/char000.dats"
#staload _ = "prelude/DATS/gint000.dats"
#staload _ = "prelude/DATS/gint001.dats"
#staload _ = "prelude/DATS/gflt000.dats"
(* ****** ****** *)
#staload _ = "prelude/DATS/strn000.dats"
#staload _ = "prelude/DATS/strn001.dats"
(* ****** ****** *)
#staload _ = "prelude/DATS/axrf000.dats"
#staload _ = "prelude/DATS/axrf001.dats"
#staload _ = "prelude/DATS/axsz000.dats"
Expand Down Expand Up @@ -97,6 +99,7 @@ This one is included by [DATS/unsfx00.dats]
#staload _ = "prelude/DATS/VT/gsyn000_vt.dats"
(* ****** ****** *)
#staload _ = "prelude/DATS/VT/strn000_vt.dats"
(* ****** ****** *)
#staload _ = "prelude/DATS/VT/axrf000_vt.dats"
#staload _ = "prelude/DATS/VT/axsz000_vt.dats"
#staload _ = "prelude/DATS/VT/tupl000_vt.dats"
Expand Down
6 changes: 5 additions & 1 deletion xatslib/githwxi/TEST/CATS/JS/test08_volctrl.dats
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ lam(work) =>
work
("Date" , f0_strn(row[0]));
work
("Volume" , f0_dflt(row[6]));
("Volume" , f0_sint(row[6]));
work
("AdjClose", f0_dflt(row[5])))
) where
Expand All @@ -89,6 +89,10 @@ fun
f0_strn
(rep: strn): dtval = DTVstrn(rep)
fun
f0_sint
(rep: strn): dtval =
DTVsint(head0(g_parse$opt<sint>(rep)))
fun
f0_dflt
(rep: strn): dtval =
DTVdflt(head0(g_parse$opt<dflt>(rep)))
Expand Down

0 comments on commit 8c236d5

Please sign in to comment.