-
-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
66 changed files
with
2,294 additions
and
1,284 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,31 @@ | ||
{ | ||
"typescript.preferences.quoteStyle": "single", | ||
"typescriptHero.imports.organizeOnSave": true, | ||
"antlr4.generation": { | ||
"language": "TypeScript", | ||
"outputDir": "grammars" | ||
}, | ||
"mochaExplorer.nodePath": null, | ||
"mochaExplorer.cwd": "server", | ||
"mochaExplorer.mochaPath": "server/node_modules/mocha", | ||
"mochaExplorer.require": "ts-node/register", | ||
"mochaExplorer.files": "**/*.test.ts", | ||
"mochaExplorer.require": "node_modules/ts-node/register", | ||
"mochaExplorer.files": "server/**/*.test.ts", | ||
"mochaExplorer.ignore": "server/node_modules/**/*.test.ts", | ||
// "mochaExplorer.launcherScript": "node_modules/mocha-explorer-launcher-scripts/vscode-test", | ||
"mochaExplorer.autoload": false, | ||
"mochaExplorer.esmLoader": false, | ||
// "mochaExplorer.ipcRole": "server", | ||
"mochaExplorer.env": { | ||
"TS_NODE_COMPILER_OPTIONS": "{\"module\":\"commonjs\",\"strict\":false}", | ||
// "VSCODE_VERSION": "insiders", | ||
"ELECTRON_RUN_AS_NODE": null | ||
}, | ||
"mochaExplorer.globImplementation": "vscode", | ||
// "mochaExplorer.logpanel": true, | ||
"cSpell.words": [ | ||
"antlr", | ||
"diagnoser", | ||
"Intrinsics", | ||
"Vect" | ||
], | ||
"typescriptHero.imports.organizeOnSave": true, | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
class Grammar; | ||
|
||
const C1 = 0; | ||
|
||
enum E1 { | ||
E1_1, | ||
E1_2, | ||
}; | ||
|
||
struct S1 { | ||
struct S2 { | ||
var int V1; | ||
}; | ||
|
||
var enum E2 { | ||
E2_1 | ||
} V2; | ||
|
||
var int V3; | ||
}; | ||
|
||
var int V4; | ||
|
||
delegate D1(); | ||
|
||
function F1(); | ||
|
||
state ST1 | ||
{ | ||
ignores F1; | ||
|
||
function F2(); | ||
|
||
begin: | ||
F2(); | ||
} | ||
|
||
defaultproperties | ||
{ | ||
V4=1 | ||
} |
File renamed without changes.
Oops, something went wrong.
42f5902
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@EliotVU something is very wrong with this version.
I'm opening kf1 sources without any mods and what i get:
And you can not click-open on
Actor
s parentObject
class.42f5902
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks. It seemed to work fine on UDK's source.
I have tried the KF1 source that you linked and can indeed confirm that it's broken, apparently it halts as soon as it tries to lexer an #exec directive:
Odd given that I hadn't changed anything in relation to that 🤣 Anyway, I'll try to fix it tomorrow.
42f5902
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Classic moment, when you fix stuff and something very different breaks 😅