File tree Expand file tree Collapse file tree 4 files changed +6
-3
lines changed
Expand file tree Collapse file tree 4 files changed +6
-3
lines changed Original file line number Diff line number Diff line change 4242 node-version : 20
4343 - name : Install dependencies
4444 run : yarn install --frozen-lockfile
45+ - name : Build
46+ run : yarn build
4547 - name : Publish to npm
4648 run : npm publish
4749 env :
Original file line number Diff line number Diff line change 11{
22 "name" : " java-slang" ,
3- "version" : " 1.0.7 " ,
3+ "version" : " 1.0.8 " ,
44 "main" : " dist/index.js" ,
55 "types" : " dist/main.d.ts" ,
6+ "files" : [" dist" ],
67 "repository" : {
78 "type" : " git" ,
89 "url" : " git+https://github.com/source-academy/java-slang.git"
Original file line number Diff line number Diff line change 88
99import { Expression } from '../types/blocks-and-statements'
1010import { Identifier , FieldDeclaration , FieldModifier } from '../types/classes'
11+ import { Location } from '../types'
1112import { ExpressionExtractor } from './expression-extractor'
1213import { TypeExtractor } from './type-extractor'
13- import { Location } from '../types'
1414
1515export class FieldExtractor extends BaseJavaCstVisitorWithDefaults {
1616 private modifier : Array < FieldModifier > = [ ]
Original file line number Diff line number Diff line change @@ -19,9 +19,9 @@ import {
1919 Result
2020} from '../types/classes'
2121import { BlockStatement } from '../types/blocks-and-statements'
22+ import { Location } from '../types'
2223import { BlockStatementExtractor } from './block-statement-extractor'
2324import { TypeExtractor } from './type-extractor'
24- import { Location } from '../types'
2525
2626export class MethodExtractor extends BaseJavaCstVisitorWithDefaults {
2727 private modifier : Array < MethodModifier > = [ ]
You can’t perform that action at this time.
0 commit comments