0

Funscript を使い始めたばかりで、早い段階でエラーが発生します。

F# を書くとき、私は通常、次のように int を文字列に変換します。

let str = string 123

これにより、実行時に次のエラーが発生します。

Ohanterat undantag: System.Exception: Could not compile expression: Call (None, ToString, [Value (123)])
   vid FunScript.InternalCompiler.clo@117-1.Invoke(String message)
   vid Microsoft.FSharp.Core.PrintfImpl.go@523-3[b,c,d](String fmt, Int32 len, FSharpFunc`2 outputChar, FSharpFunc`2 outa, b os, FSharpFunc`2 finalize, FSharpList`1 args, Int32 i)
   vid Microsoft.FSharp.Core.PrintfImpl.run@521[b,c,d](FSharpFunc`2 initialize, String fmt, Int32 len, FSharpList`1 args)
   vid Microsoft.FSharp.Core.PrintfImpl.capture@540[b,c,d](FSharpFunc`2 initialize, String fmt, Int32 len, FSharpList`1 args, Type ty, Int32 i)
   vid <StartupCode$FSharp-Core>.$Reflect.Invoke@720-4.Invoke(T1 inp)
   vid FunScript.CompilerComponent.splitDeclarationFromUsageIfNeeded(ICompiler compiler, FSharpExpr expr)
   vid FunScript.CompilerComponent.makeFriendly@28.Invoke(a expr)
   vid FunScript.LetBindings.binding@9-1.Invoke(FSharpExpr _arg1)
   vid FunScript.CompilerComponent.create@32.FunScript-InternalCompiler-ICompilerComponent-TryCompile(ICompiler compiler, IReturnStrategy returnStategy, FSharpExpr expr)
   vid FunScript.InternalCompiler.Compiler.tryComponent(IReturnStrategy returnStategy, FSharpExpr expr, ICompilerComponent part)
   vid FunScript.InternalCompiler.result@76.Invoke(ICompilerComponent part)
   vid Microsoft.FSharp.Collections.ListModule.TryPick[T,TResult](FSharpFunc`2 chooser, FSharpList`1 list)
   vid FunScript.InternalCompiler.Compiler.tryAllComponents(IReturnStrategy returnStategy, FSharpExpr expr)
   vid FunScript.InternalCompiler.Compiler.compile(IReturnStrategy returnStategy, FSharpExpr expr)
   vid FunScript.ReflectedDefinitions.genMethod(MethodBase mb, MethodBase replacementMi, FSharpList`1 vars, FSharpExpr bodyExpr, FSharpVar var, ICompiler compiler)
   vid FunScript.ReflectedDefinitions.createGlobalMethod@49.Invoke(FSharpVar var)
   vid FunScript.InternalCompiler.Compiler.define(String name, FSharpFunc`2 cons)
   vid FunScript.InternalCompiler.Compiler.FunScript-InternalCompiler-ICompiler-DefineGlobal(String name, FSharpFunc`2 cons)
   vid FunScript.ReflectedDefinitions.createGlobalMethod(String name, ICompiler compiler, MethodBase mb, CallType callType)
   vid FunScript.ReflectedDefinitions.createCall[a](FSharpFunc`2 |Split|, IReturnStrategy returnStategy, ICompiler compiler, IEnumerable`1 exprs, MethodInfo mi)
   vid FunScript.ReflectedDefinitions.methodCalling@209.Invoke(FSharpFunc`2 split, ICompiler compiler, IReturnStrategy returnStategy, FSharpExpr _arg1)
   vid FunScript.CompilerComponent.create@32.FunScript-InternalCompiler-ICompilerComponent-TryCompile(ICompiler compiler, IReturnStrategy returnStategy, FSharpExpr expr)
   vid FunScript.InternalCompiler.Compiler.tryComponent(IReturnStrategy returnStategy, FSharpExpr expr, ICompilerComponent part)
   vid FunScript.InternalCompiler.result@76.Invoke(ICompilerComponent part)
   vid Microsoft.FSharp.Collections.ListModule.TryPick[T,TResult](FSharpFunc`2 chooser, FSharpList`1 list)
   vid FunScript.InternalCompiler.Compiler.tryAllComponents(IReturnStrategy returnStategy, FSharpExpr expr)
   vid FunScript.InternalCompiler.Compiler.compile(IReturnStrategy returnStategy, FSharpExpr expr)
   vid FunScript.Compiler.Compiler.Compile(FSharpExpr expression, FSharpOption`1 components, FSharpOption`1 noReturn, FSharpOption`1 shouldFlattenGenericsForReflection)
   vid <StartupCode$FunScript-Test>.$Program.main@() i C:\Users\Andreas\Desktop\funscript\WebGL\WebGL\Program.fs:rad 42

代わりに 123.ToString() を実行できることはわかっていますが、これが実装されていないだけなのか、Funscript github ページに報告すべきバグなのか疑問に思っています。

NuGet の最新の Funscript で VS2013 Update 4 を使用します。

4

1 に答える 1

1

これは FunScript のバグのように見えます (つまり、そこにあるはずのマッピングが欠落している) ので、GitHub でバグ レポートを送信していただけると助かります。(ソース コードにのマッピングがあるstringため、ここで何が問題なのかわかりません。

いずれにせよ、FunScript はすべてを翻訳することはできず、不足している機能を提供するカスタム関数をいつでも追加できるため、次のようなものをプロジェクトに追加できます (問題が修正されるまで):

[<JSEmit("return String({0});")>]     // Inline JS code for converting to strings
let string (v:'TAny) : string =       // The function is never executed so we can just
  failwith "JavaScript mapping is never executed"    // throw an exception here!
于 2015-02-21T17:15:28.053 に答える