You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: FrontEndAst/DAst.fs
+3Lines changed: 3 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -485,6 +485,7 @@ type AcnFuncBodyResult = {
485
485
resultExpr :string option
486
486
auxiliaries :string list
487
487
icdResult :IcdArgAux option
488
+
userDefinedFunctions :UserDefinedFunction list //a list of user defined functions prototypes used in this function body. Emitted at the begining of the source file
488
489
}
489
490
490
491
typeXERFuncBodyResult={
@@ -529,6 +530,7 @@ type AcnFunction = {
529
530
funcBody :AcnFuncBody
530
531
funcBodyAsSeqComp :AcnFuncBodySeqComp
531
532
isTestVaseValid :AutomaticTestCase -> bool
533
+
userDefinedFunctions :UserDefinedFunction list //a list of user defined functions prototypes used in this function body. Emitted at the begining of the source file
532
534
icdTas :IcdTypeAss option (* always present in Encode, always None in Decode *)
//userDefinedFunctions : UserDefinedFunction list //a list of user defined functions prototypes used in this function body. Emitted at the begining of the source file
0 commit comments