/// <summary> /// Loads the workspace from the given file. /// </summary> /// <param name="fromFileName">The path to the file.</param> public static void Load(this ParseContext context, String fromFileName) { var lf = new LoadFunction(context); lf.Function(new StringValue(fromFileName)); }