@shapeshift-labs/frontier-lang-java 0.1.7 → 0.1.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -254,4 +254,4 @@ Run the package-local benchmark with:
|
|
|
254
254
|
npm run bench
|
|
255
255
|
```
|
|
256
256
|
|
|
257
|
-
These measurements exercise only this package's importer wrapper and semantic sidecar helpers.
|
|
257
|
+
These are Frontier-only package measurements for @shapeshift-labs/frontier-lang-java. They exercise only this package's importer wrapper and semantic sidecar helpers without making competitor comparison claims.
|
package/dist/index.d.ts
CHANGED
|
@@ -16,7 +16,7 @@ export declare const JavaSupportedExtensions: readonly string[];
|
|
|
16
16
|
|
|
17
17
|
export interface JavaLanguagePackageMetadata {
|
|
18
18
|
readonly packageName: '@shapeshift-labs/frontier-lang-java';
|
|
19
|
-
readonly version: '0.1.
|
|
19
|
+
readonly version: '0.1.8';
|
|
20
20
|
readonly sourceLanguage: 'java';
|
|
21
21
|
readonly parser: 'javac';
|
|
22
22
|
readonly parserAstFormat: 'java-ast';
|
package/dist/index.js
CHANGED
|
@@ -13,7 +13,7 @@ export const JavaSupportedExtensions = Object.freeze(['.java']);
|
|
|
13
13
|
|
|
14
14
|
export const JavaLanguagePackage = Object.freeze({
|
|
15
15
|
packageName: '@shapeshift-labs/frontier-lang-java',
|
|
16
|
-
version: '0.1.
|
|
16
|
+
version: '0.1.8',
|
|
17
17
|
sourceLanguage: JavaSourceLanguage,
|
|
18
18
|
parser: JavaParser,
|
|
19
19
|
parserAstFormat: JavaParserAstFormat,
|
package/package.json
CHANGED