@syntest/search
Advanced tools
Comparing version 0.4.1 to 0.5.0-beta.0
import { Encoding } from "./Encoding"; | ||
import { ExecutionResult } from "./ExecutionResult"; | ||
import { SearchSubject } from "./SearchSubject"; | ||
/** | ||
* @author Mitchell Olsthoorn | ||
* EncodingRunner | ||
*/ | ||
@@ -11,4 +10,4 @@ export interface EncodingRunner<T extends Encoding> { | ||
*/ | ||
execute(subject: SearchSubject<T>, encoding: T): Promise<ExecutionResult>; | ||
execute(encoding: T): Promise<ExecutionResult>; | ||
} | ||
//# sourceMappingURL=EncodingRunner.d.ts.map |
@@ -73,3 +73,3 @@ "use strict"; | ||
// Execute the encoding | ||
const result = await this._runner.execute(this._subject, encoding); | ||
const result = await this._runner.execute(encoding); | ||
// TODO: Use events for this so we can elimate the dependency on the budget manager | ||
@@ -76,0 +76,0 @@ budgetManager.evaluation(); |
{ | ||
"name": "@syntest/search", | ||
"version": "0.4.1", | ||
"version": "0.5.0-beta.0", | ||
"description": "The common core of the SynTest Framework", | ||
@@ -64,3 +64,3 @@ "keywords": [ | ||
}, | ||
"gitHead": "912254257fbc2c098f58a4691e3c71fc00498222" | ||
"gitHead": "c18ffa4c96e1f5e5cf9a7fc8c6bd96c9e5683bb4" | ||
} |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
311824
5361