public abstract bool SetupFromAssembly(Assemble.AssemblyCode code);
Example #2
0
 public static bool TryParse(string source, string filePath, out AssemblyCode res, List <AssembleError> errorList)
 {
     res = new Assemble.AssemblyCode();
     return(TryParseAndAdd(source, filePath, ref res, errorList));
 }