2

我的目标是简单地输出一个包含我翻译的 F# 库的 javascript 文件。而已。

我有一个空的解决方案,我添加了两个 F# 项目。一个是WSLib使用单个文件调用的库:

namespace WSLib

[<ReflectedDefinition>]
type Class1() = 
    member this.X = "F#"

[<ReflectedDefinition>]
module Foo =
  let bar = 34

另一个项目是一个控制台应用程序,并引用了NuGetWebSharperWebSharper.CompilerNuGet 包。它有一个文件。我从http://www.fssnip.net/snippet/rP复制了代码的前半部分。

module Program

open Microsoft.FSharp.Quotations
open WebSharper
type AR = IntelliFactory.Core.AssemblyResolution.AssemblyResolver

module FE = WebSharper.Compiler.FrontEnd

let compile (expr: Expr) : string option =
    let loader = FE.Loader.Create (AR.Create()) (eprintfn "%O")
    let options =
        { FE.Options.Default with
            References =
                List.map loader.LoadFile [
                    // These contain the JavaScript implementation for most of the standard library
                    "WebSharper.Main.dll"
                    "WebSharper.Collections.dll"
                    "WebSharper.Control.dll"
                    "WSLib.dll"
                    // Add any other assemblies used in the quotation...
                ] }
    let compiler = FE.Prepare options (sprintf "%A" >> System.Diagnostics.Debug.WriteLine)
    compiler.Compile expr
    |> Option.map (fun e -> e.ReadableJavaScript)

[<JavaScript>]
let main() =
  let a = WSLib.Class1().X
  let b = WSLib.Foo.bar
  (a,b)

let code = 
  match (compile <@ main() @>) with
  |None -> failwith "parse failed"
  |Some x -> x

open System.IO

let filePath = Path.Combine(System.Environment.CurrentDirectory, "index.js") 
File.WriteAllText(filePath, code) 

我收到几个错误:

{Location = {ReadableLocation = "main";
             SourceLocation = null;};
 Priority = Error;
 Text = "Failed to translate property access: X [WSLib.Class1].";}
{Location = {ReadableLocation = "main";
             SourceLocation = null;};
 Priority = Error;
 Text = "Failed to translate property access: bar [WSLib.Foo].";}

我需要做什么才能让 websharper 编译器与不同的项目一起工作?如果我将WebSharper包包含在 WSLib 中并替换ReflectedDefinitionJavaScript.

4

1 回答 1

3

这里发生的情况是,添加WSLib.dll到编译器引用只会使其在该程序集中查找 WebSharper 元数据(如果有的话);但WSLib需要已经 WebSharper 编译。为此,您需要引用WebSharperWSLib如您所做的那样)并将以下属性添加到项目文件中:

<WebSharperProject>Library</WebSharperProject>

指示 WebSharper 它必须编译此程序集。

于 2015-09-29T12:40:56.357 回答