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
+3-1Lines changed: 3 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -485,7 +485,7 @@ type AcnFuncBodyResult = {
485
485
resultExpr :string option
486
486
auxiliaries :string list
487
487
icdResult :IcdArgAux option
488
-
userDefinedFunctions :UserDefinedFunction list
488
+
userDefinedFunctions :UserDefinedFunction list//a list of user defined functions prototypes used in this function body. Emitted at the begining of the source file
489
489
}
490
490
491
491
typeXERFuncBodyResult={
@@ -530,6 +530,7 @@ type AcnFunction = {
530
530
funcBody :AcnFuncBody
531
531
funcBodyAsSeqComp :AcnFuncBodySeqComp
532
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
533
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