ncsoft / Unreal.js

Unreal.js: Javascript runtime built for UnrealEngine
Other
3.67k stars 351 forks source link

Manual install fails for latest version of Unreal.js-core #167

Closed Youdaman closed 7 years ago

Youdaman commented 7 years ago

To reproduce, create a new C++ project with 4.15.1 and do a manual install of Unreal.js

It seems the last working version of Unreal.js-core was your commit https://github.com/ncsoft/Unreal.js-core/commit/4fc66ced6692156bdc8f6b819571b807028b5618 and your mate Hyeoncheol Cho broke things with his last couple of commits:

commit 7212a9050d1b14ce7d077cbe0b3dc7fce9631377
Author: ???(Hyeoncheol Cho)(crocuis) <crocuis@ncsoft.com>
Date:   Mon Apr 10 22:31:51 2017 +0900

    fix

commit b8671c76a984d21eecaa66060d4fa9e152570868
Author: ???(Hyeoncheol Cho)(crocuis) <crocuis@ncsoft.com>
Date:   Mon Apr 10 22:22:48 2017 +0900

    fix for IWYU

commit 4fc66ced6692156bdc8f6b819571b807028b5618
Author: Nako Sung <deif79@gmail.com>
Date:   Sat Apr 8 23:03:55 2017 +0900

    Fix #166

For anyone else experiencing the same problem, to fix things I did a git reflog and git reset --hard HEAD@{1} to revert my copy to the last working version I had:

Youdaman@DESKTOP-SNUDLCL MINGW64 ~/Desktop/UnrealJS (master)
$ git reflog
7212a90 HEAD@{0}: pull: Fast-forward
4fc66ce HEAD@{1}: clone: from https://github.com/ncsoft/Unreal.js-core

Youdaman@DESKTOP-SNUDLCL MINGW64 ~/Desktop/UnrealJS (master)
$ git reset --hard HEAD@{1}
HEAD is now at 4fc66ce Fix #166
nakosung commented 7 years ago

@crocuis Please check this problem. :)

crocuis commented 7 years ago

@Youdaman I could not reproduce the problem. I want to know more precisely what problems you have. :)

Youdaman commented 7 years ago

Steps to reproduce:

  1. create new project in 4.15
  2. copy latest UnrealJS plugin (from https://github.com/ncsoft/Unreal.js-core) + libs
  3. build

The problem is that if I update the UnrealJS plugin via git pull it won't build against 4.15, see attached video, which shows that it builds fine for the last change that @nakosung made, but not for the recent changes made by @crocuis -- https://www.youtube.com/watch?v=N0DaTR_y5Kc

PS here's the output of the failed build in VS 2015:

1>------ Build started: Project: MyProject, Configuration: Development_Editor x64 ------
1>  Performing 18 actions (4 in parallel)
1>  Module.V8.cpp
1>  JavascriptEditor.generated.1.cpp
1>  Module.JavascriptGraphEditor.cpp
1>  JavascriptEditor.generated.2.cpp
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptEditor\JavascriptEditorGlobalDelegates.h(53): error C2065: 'ELevelViewportType': undeclared identifier
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptEditor\JavascriptEditorGlobalDelegates.h(53): error C2923: 'TEnumAsByte': 'ELevelViewportType' is not a valid template type argument for parameter 'TEnum'
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptEditor\JavascriptEditorGlobalDelegates.h(53): error C4624: 'JavascriptEditorGlobalDelegates_eventOnEditorCameraMoved_Parms': destructor was implicitly defined as deleted
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptEditor\JavascriptEditorGlobalDelegates.h(53): error C2065: 'ELevelViewportType': undeclared identifier
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptEditor\JavascriptEditorGlobalDelegates.h(53): error C2923: 'TEnumAsByte': 'ELevelViewportType' is not a valid template type argument for parameter 'TEnum'
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptEditor\JavascriptEditorGlobalDelegates.h(53): error C4624: 'JavascriptEditorGlobalDelegates_eventOnEditorCameraMoved_Parms': destructor was implicitly defined as deleted
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptEditor\JavascriptEditorGlobalDelegates.h(178): error C2061: syntax error: identifier 'ELevelViewportType'
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptEditor\JavascriptEditorGlobalDelegates.h(178): error C2061: syntax error: identifier 'ELevelViewportType'
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptEditor\JavascriptEditorGlobalDelegates.h(56): error C2065: 'P_FINISH': undeclared identifier
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptEditor\JavascriptEditorGlobalDelegates.h(56): error C2065: 'P_NATIVE_BEGIN': undeclared identifier
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptEditor\JavascriptEditorGlobalDelegates.h(56): error C2065: 'P_NATIVE_END': undeclared identifier
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptEditor\JavascriptEditorGlobalDelegates.h(56): error C2275: 'UStrProperty': illegal use of this type as an expression
1>  C:\Program Files\Epic Games\UE_4.15\Engine\Source\Runtime\CoreUObject\Public\UObject/UnrealType.h(2423): note: see declaration of 'UStrProperty'
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptEditor\JavascriptEditorGlobalDelegates.h(56): error C2065: 'P_FINISH': undeclared identifier
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptEditor\JavascriptEditorGlobalDelegates.h(56): error C2065: 'P_NATIVE_BEGIN': undeclared identifier
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptEditor\JavascriptEditorGlobalDelegates.h(56): error C2065: 'P_NATIVE_END': undeclared identifierC:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptEditor\JavascriptEditorGlobalDelegates.h(56): error C2065: 'Z_Param_Key': undeclared identifier
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptEditor\JavascriptEditorGlobalDelegates.h(56): error C3861: 'P_GET_PROPERTY': identifier not found
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptEditor\JavascriptEditorGlobalDelegates.h(56): error C2275: 'UStrProperty': illegal use of this type as an expression
1>
1>  C:\Program Files\Epic Games\UE_4.15\Engine\Source\Runtime\CoreUObject\Public\UObject/UnrealType.h(2423): note: see declaration of 'UStrProperty'
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptEditor\JavascriptEditorGlobalDelegates.h(56): error C2065: 'Z_Param_Key': undeclared identifier
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptEditor\JavascriptEditorGlobalDelegates.h(56): error C3861: 'P_GET_PROPERTY': identifier not found
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptEditor\JavascriptInputEventStateLibrary.h(13): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptEditor\JavascriptInputEventStateLibrary.h(13): error C2143: syntax error: missing ',' before '&'
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptEditor\JavascriptInputEventStateLibrary.h(17): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptEditor\JavascriptInputEventStateLibrary.h(13): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptEditor\JavascriptInputEventStateLibrary.h(13): error C2143: syntax error: missing ',' before '&'C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptEditor\JavascriptInputEventStateLibrary.h(17): error C2143: syntax error: missing ';' before '*'
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptEditor\JavascriptInputEventStateLibrary.h(17): error C2238: unexpected token(s) preceding ';'
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptEditor\JavascriptInputEventStateLibrary.h(11): error C2789: 'FJavascriptInputEventState::FInputEventState': an object of const-qualified type must be initialized
1>  C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptEditor\JavascriptInputEventStateLibrary.h(17): note: see declaration of 'FJavascriptInputEventState::FInputEventState'
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptEditor\JavascriptInputEventStateLibrary.h(13): error C2065: 'InInputEvent': undeclared identifier
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptEditor\JavascriptInputEventStateLibrary.h(17): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptEditor\JavascriptInputEventStateLibrary.h(15): error C2789: 'FJavascriptInputEventState::FInputEventState': an object of const-qualified type must be initializedC:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptEditor\JavascriptInputEventStateLibrary.h(17): error C2143: syntax error: missing ';' before '*'
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptEditor\JavascriptInputEventStateLibrary.h(17): error C2238: unexpected token(s) preceding ';'
1>  C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptEditor\JavascriptInputEventStateLibrary.h(17): note: see declaration of 'FJavascriptInputEventState::FInputEventState'
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptEditor\JavascriptInputEventStateLibrary.h(15): error C2614: 'FJavascriptInputEventState': illegal member initialization: 'InputEvent' is not a base or member
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptEditor\JavascriptInputEventStateLibrary.h(25): error C2504: 'UBlueprintFunctionLibrary': base class undefined
1>
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptEditor\JavascriptInputEventStateLibrary.h(26): error C3646: 'Super': unknown override specifier
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptEditor\JavascriptInputEventStateLibrary.h(11): error C2789: 'FJavascriptInputEventState::FInputEventState': an object of const-qualified type must be initializedC:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptEditor\JavascriptInputEventStateLibrary.h(26): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>
1>  C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptEditor\JavascriptInputEventStateLibrary.h(17): note: see declaration of 'FJavascriptInputEventState::FInputEventState'
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptEditor\JavascriptInputEventStateLibrary.h(13): error C2065: 'InInputEvent': undeclared identifier
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptEditor\JavascriptInputEventStateLibrary.h(15): error C2789: 'FJavascriptInputEventState::FInputEventState': an object of const-qualified type must be initialized
1>  C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptEditor\JavascriptInputEventStateLibrary.h(17): note: see declaration of 'FJavascriptInputEventState::FInputEventState'
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptEditor\JavascriptInputEventStateLibrary.h(15): error C2614: 'FJavascriptInputEventState': illegal member initialization: 'InputEvent' is not a base or member
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptEditor\JavascriptInputEventStateLibrary.h(30): error C3646: 'GetInputEvent': unknown override specifier
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptEditor\JavascriptInputEventStateLibrary.h(25): error C2504: 'UBlueprintFunctionLibrary': base class undefinedC:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptEditor\JavascriptInputEventStateLibrary.h(30): error C2059: syntax error: 'const'
1>
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptEditor\JavascriptInputEventStateLibrary.h(30): error C2238: unexpected token(s) preceding ';'
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptEditor\JavascriptInputEventStateLibrary.h(26): error C3646: 'Super': unknown override specifier
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptEditor\JavascriptInputEventStateLibrary.h(26): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptEditor\JavascriptInputEventStateLibrary.h(26): error C2275: 'FJavascriptInputEventState': illegal use of this type as an expression
1>  C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptEditor\JavascriptInputEventStateLibrary.h(7): note: see declaration of 'FJavascriptInputEventState'
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptEditor\JavascriptInputEventStateLibrary.h(26): error C2065: 'Z_Param_Out_InputEvent': undeclared identifier
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptEditor\JavascriptInputEventStateLibrary.h(26): error C3861: 'P_GET_STRUCT_REF': identifier not found
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptEditor\JavascriptInputEventStateLibrary.h(26): error C2065: 'P_FINISH': undeclared identifier
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptEditor\JavascriptInputEventStateLibrary.h(26): error C2065: 'P_NATIVE_BEGIN': undeclared identifier
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptEditor\JavascriptInputEventStateLibrary.h(30): error C3646: 'GetInputEvent': unknown override specifierC:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptEditor\JavascriptInputEventStateLibrary.h(26): error C2065: 'P_NATIVE_END': undeclared identifier
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptEditor\JavascriptInputEventStateLibrary.h(30): error C2059: syntax error: 'const'
1>
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptEditor\JavascriptInputEventStateLibrary.h(30): error C2238: unexpected token(s) preceding ';'
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptEditor\JavascriptInputEventStateLibrary.h(26): error C2275: 'FJavascriptInputEventState': illegal use of this type as an expression
1>  C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptEditor\JavascriptInputEventStateLibrary.h(7): note: see declaration of 'FJavascriptInputEventState'C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptEditor\JavascriptInputEventStateLibrary.h(26): error C2275: 'FKey': illegal use of this type as an expression
1>
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptEditor\JavascriptInputEventStateLibrary.h(26): error C2065: 'Z_Param_Out_InputEvent': undeclared identifierc:\users\youdaman\desktop\myproject\plugins\unrealjs\intermediate\build\win64\ue4editor\inc\javascripteditor\JavascriptInputEventStateLibrary.generated.h(10): note: see declaration of 'FKey'
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptEditor\JavascriptInputEventStateLibrary.h(26): error C2065: 'Z_Param_InKey': undeclared identifier
1>
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptEditor\JavascriptInputEventStateLibrary.h(26): error C3861: 'P_GET_STRUCT_REF': identifier not found
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptEditor\JavascriptInputEventStateLibrary.h(26): error C3861: 'P_GET_STRUCT': identifier not foundC:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptEditor\JavascriptInputEventStateLibrary.h(26): error C2065: 'P_FINISH': undeclared identifier
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptEditor\JavascriptInputEventStateLibrary.h(26): error C2065: 'P_NATIVE_BEGIN': undeclared identifier
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptEditor\JavascriptInputEventStateLibrary.h(26): error C2065: 'P_NATIVE_END': undeclared identifier
1>
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptEditor\JavascriptInputEventStateLibrary.h(26): error C2275: 'FKey': illegal use of this type as an expressionC:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptEditor\JavascriptInputEventStateLibrary.h(26): error C2065: 'EInputEvent': undeclared identifier
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptEditor\JavascriptInputEventStateLibrary.h(26): error C2923: 'TEnumAsByte': 'EInputEvent' is not a valid template type argument for parameter 'TEnum'
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptEditor\JavascriptInputEventStateLibrary.h(26): error C2039: 'GetInputEvent': is not a member of 'UJavascriptInputEventStateLibrary'
1>  C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptEditor\JavascriptInputEventStateLibrary.h(24): note: see declaration of 'UJavascriptInputEventStateLibrary'
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptEditor\JavascriptInputEventStateLibrary.h(26): error C3861: 'GetInputEvent': identifier not found
1>
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptEditor\JavascriptInputEventStateLibrary.h(26): error C2614: 'UJavascriptInputEventStateLibrary': illegal member initialization: 'Super' is not a base or member
1>  c:\users\youdaman\desktop\myproject\plugins\unrealjs\intermediate\build\win64\ue4editor\inc\javascripteditor\JavascriptInputEventStateLibrary.generated.h(10): note: see declaration of 'FKey'
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptEditor\JavascriptInputEventStateLibrary.h(26): error C2065: 'Z_Param_InKey': undeclared identifier
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptEditor\JavascriptInputEventStateLibrary.h(26): error C3861: 'P_GET_STRUCT': identifier not found
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptEditor\JavascriptInputEventStateLibrary.h(26): error C2065: 'EInputEvent': undeclared identifier
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptEditor\JavascriptInputEventStateLibrary.h(26): error C2923: 'TEnumAsByte': 'EInputEvent' is not a valid template type argument for parameter 'TEnum'
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptEditor\JavascriptInputEventStateLibrary.h(26): error C2039: 'GetInputEvent': is not a member of 'UJavascriptInputEventStateLibrary'
1>  C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptEditor\JavascriptInputEventStateLibrary.h(24): note: see declaration of 'UJavascriptInputEventStateLibrary'
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptEditor\JavascriptInputEventStateLibrary.h(26): error C3861: 'GetInputEvent': identifier not found
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptEditor\JavascriptInputEventStateLibrary.h(26): error C2440: 'return': cannot convert from 'UJavascriptInputEventStateLibrary *' to 'UObject *'
1>  C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptEditor\JavascriptInputEventStateLibrary.h(26): note: Types pointed to are unrelated; conversion requires reinterpret_cast, C-style cast or function-style cast
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptEditor\JavascriptInputEventStateLibrary.h(26): error C2614: 'UJavascriptInputEventStateLibrary': illegal member initialization: 'Super' is not a base or member
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptEditor\JavascriptInputEventStateLibrary.h(26): error C2440: 'return': cannot convert from 'UJavascriptInputEventStateLibrary *' to 'UObject *'
1>  C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptEditor\JavascriptInputEventStateLibrary.h(26): note: Types pointed to are unrelated; conversion requires reinterpret_cast, C-style cast or function-style cast
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\V8\Private\DirectoryWatcher.cpp(25): error C2653: 'FModuleManager': is not a class or namespace name
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\V8\Private\DirectoryWatcher.cpp(25): error C3861: 'Get': identifier not found
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\V8\Private\DirectoryWatcher.cpp(25): error C2228: left of '.LoadModuleChecked' must have class/struct/union
1>  C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\V8\Private\DirectoryWatcher.cpp(25): note: type is 'unknown-type'
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\V8\Private\DirectoryWatcher.cpp(25): error C2530: 'DirectoryWatcherModule': references must be initialized
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\V8\Private\DirectoryWatcher.cpp(54): error C2653: 'IFileManager': is not a class or namespace name
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\V8\Private\DirectoryWatcher.cpp(54): error C3861: 'Get': identifier not found
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\V8\Private\DirectoryWatcher.cpp(54): error C2228: left of '.DirectoryExists' must have class/struct/union
1>  C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\V8\Private\DirectoryWatcher.cpp(54): note: type is 'unknown-type'
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\V8\Private\DirectoryWatcher.cpp(64): error C2653: 'FModuleManager': is not a class or namespace name
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\V8\Private\DirectoryWatcher.cpp(64): error C3861: 'Get': identifier not found
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\V8\Private\DirectoryWatcher.cpp(64): error C2228: left of '.LoadModuleChecked' must have class/struct/union
1>  C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\V8\Private\DirectoryWatcher.cpp(64): note: type is 'unknown-type'
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\V8\Private\DirectoryWatcher.cpp(64): error C2530: 'DirectoryWatcherModule': references must be initialized
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\V8\Private\DirectoryWatcher.cpp(67): error C2653: 'IFileManager': is not a class or namespace name
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\V8\Private\DirectoryWatcher.cpp(67): error C3861: 'Get': identifier not found
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\V8\Private\DirectoryWatcher.cpp(67): error C2228: left of '.DirectoryExists' must have class/struct/union
1>  C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\V8\Private\DirectoryWatcher.cpp(67): note: type is 'unknown-type'
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptUMG\JavascriptMenuLibrary.h(155): error C2027: use of undefined type 'UTextProperty'
1>  C:\Program Files\Epic Games\UE_4.15\Engine\Source\Runtime\CoreUObject\Public\Templates/Casts.h(363): note: see declaration of 'UTextProperty'
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptUMG\JavascriptMenuLibrary.h(155): error C2065: 'TCppType': undeclared identifier
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptUMG\JavascriptMenuLibrary.h(155): error C2146: syntax error: missing ';' before identifier 'Z_Param_Out_InContextDescTemp'
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptUMG\JavascriptMenuLibrary.h(155): error C2065: 'Z_Param_Out_InContextDescTemp': undeclared identifier
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptUMG\JavascriptMenuLibrary.h(155): error C3861: 'GetDefaultPropertyValue': identifier not found
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptUMG\JavascriptMenuLibrary.h(155): error C2065: 'Z_Param_Out_InContextDesc': undeclared identifier
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptUMG\JavascriptMenuLibrary.h(155): error C2146: syntax error: missing ';' before identifier 'Z_Param_Out_InMenuLabelTemp'
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptUMG\JavascriptMenuLibrary.h(155): error C2065: 'Z_Param_Out_InMenuLabelTemp': undeclared identifier
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptUMG\JavascriptMenuLibrary.h(155): error C2065: 'Z_Param_Out_InMenuLabel': undeclared identifier
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptUMG\JavascriptMenuLibrary.h(155): error C2146: syntax error: missing ';' before identifier 'Z_Param_Out_InToolTipTemp'
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptUMG\JavascriptMenuLibrary.h(155): error C2065: 'Z_Param_Out_InToolTipTemp': undeclared identifier
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptUMG\JavascriptMenuLibrary.h(155): error C2065: 'Z_Param_Out_InToolTip': undeclared identifier
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptUMG\JavascriptMenuLibrary.h(155): error C2146: syntax error: missing ';' before identifier 'Z_Param_Out_LabelTemp'
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptUMG\JavascriptMenuLibrary.h(155): error C2065: 'Z_Param_Out_LabelTemp': undeclared identifier
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptUMG\JavascriptMenuLibrary.h(155): error C2065: 'Z_Param_Out_Label': undeclared identifier
1>c:\users\youdaman\desktop\myproject\plugins\unrealjs\source\javascriptgrapheditor\JavascriptGraphEditorLibrary.h(177): error C2065: 'FGraphNodeCreator': undeclared identifier
1>c:\users\youdaman\desktop\myproject\plugins\unrealjs\source\javascriptgrapheditor\JavascriptGraphEditorLibrary.h(177): error C2275: 'UEdGraphNode': illegal use of this type as an expression
1>  c:\users\youdaman\desktop\myproject\plugins\unrealjs\source\javascriptgrapheditor\JavascriptGraphEditorLibrary.h(11): note: see declaration of 'UEdGraphNode'
1>c:\users\youdaman\desktop\myproject\plugins\unrealjs\source\javascriptgrapheditor\JavascriptGraphEditorLibrary.h(177): error C2974: 'TSharedPtr': invalid template argument for 'ObjectType', type expected
1>  c:\program files\epic games\ue_4.15\engine\source\runtime\core\public\Templates/SharedPointer.h(535): note: see declaration of 'TSharedPtr'
1>c:\users\youdaman\desktop\myproject\plugins\unrealjs\source\javascriptgrapheditor\JavascriptGraphEditorLibrary.h(177): error C2059: syntax error: '>'
1>c:\users\youdaman\desktop\myproject\plugins\unrealjs\source\javascriptgrapheditor\JavascriptGraphEditorLibrary.h(177): error C2238: unexpected token(s) preceding ';'
1>c:\users\youdaman\desktop\myproject\plugins\unrealjs\source\javascriptgrapheditor\JavascriptGraphEdGraph.h(7): error C2504: 'UEdGraph': base class undefined
1>c:\users\youdaman\desktop\myproject\plugins\unrealjs\source\javascriptgrapheditor\JavascriptGraphEdGraph.h(18): error C3668: 'UJavascriptGraphEdGraph::PostEditUndo': method with override specifier 'override' did not override any base class methods
1>c:\users\youdaman\desktop\myproject\plugins\unrealjs\source\javascriptgrapheditor\JavascriptGraphEdGraph.h(8): error C2440: 'return': cannot convert from 'UJavascriptGraphEdGraph *' to 'UObject *'
1>  c:\users\youdaman\desktop\myproject\plugins\unrealjs\source\javascriptgrapheditor\JavascriptGraphEdGraph.h(8): note: Types pointed to are unrelated; conversion requires reinterpret_cast, C-style cast or function-style cast
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptGraphEditor\JavascriptGraphConnectionDrawingPolicy.cpp(20): error C2027: use of undefined type 'UEdGraph'
1>  c:\users\youdaman\desktop\myproject\plugins\unrealjs\source\javascriptgrapheditor\JavascriptGraphEditorLibrary.h(9): note: see declaration of 'UEdGraph'
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptGraphEditor\JavascriptGraphConnectionDrawingPolicy.cpp(20): error C2227: left of '->GetSchema' must point to class/struct/union/generic type
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptGraphEditor\JavascriptGraphConnectionDrawingPolicy.cpp(21): error C3536: 'Schema': cannot be used before it is initialized
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptGraphEditor\JavascriptGraphConnectionDrawingPolicy.cpp(21): error C2227: left of '->OnDetermineWiringStyle' must point to class/struct/union/generic type
1>  C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptGraphEditor\JavascriptGraphConnectionDrawingPolicy.cpp(21): note: type is 'int'
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptGraphEditor\JavascriptGraphConnectionDrawingPolicy.cpp(21): error C2228: left of '.IsBound' must have class/struct/union
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptGraphEditor\JavascriptGraphConnectionDrawingPolicy.cpp(24): error C2227: left of '->OnDetermineWiringStyle' must point to class/struct/union/generic type
1>  C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptGraphEditor\JavascriptGraphConnectionDrawingPolicy.cpp(24): note: type is 'int'
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptGraphEditor\JavascriptGraphConnectionDrawingPolicy.cpp(24): error C2228: left of '.Execute' must have class/struct/union
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptGraphEditor\JavascriptGraphConnectionDrawingPolicy.cpp(35): error C2027: use of undefined type 'UEdGraph'
1>  c:\users\youdaman\desktop\myproject\plugins\unrealjs\source\javascriptgrapheditor\JavascriptGraphEditorLibrary.h(9): note: see declaration of 'UEdGraph'
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptGraphEditor\JavascriptGraphConnectionDrawingPolicy.cpp(35): error C2227: left of '->GetSchema' must point to class/struct/union/generic type
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptGraphEditor\JavascriptGraphConnectionDrawingPolicy.cpp(36): error C3536: 'Schema': cannot be used before it is initialized
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptGraphEditor\JavascriptGraphConnectionDrawingPolicy.cpp(36): error C2227: left of '->OnDrawPreviewConnector' must point to class/struct/union/generic type
1>  C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptGraphEditor\JavascriptGraphConnectionDrawingPolicy.cpp(36): note: type is 'int'
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptGraphEditor\JavascriptGraphConnectionDrawingPolicy.cpp(36): error C2228: left of '.IsBound' must have class/struct/union
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptGraphEditor\JavascriptGraphConnectionDrawingPolicy.cpp(40): error C2227: left of '->OnDrawPreviewConnector' must point to class/struct/union/generic type
1>  C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptGraphEditor\JavascriptGraphConnectionDrawingPolicy.cpp(40): note: type is 'int'
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptGraphEditor\JavascriptGraphConnectionDrawingPolicy.cpp(40): error C2228: left of '.Execute' must have class/struct/union
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptGraphEditor\JavascriptGraphConnectionDrawingPolicy.cpp(50): error C2027: use of undefined type 'UEdGraph'
1>  c:\users\youdaman\desktop\myproject\plugins\unrealjs\source\javascriptgrapheditor\JavascriptGraphEditorLibrary.h(9): note: see declaration of 'UEdGraph'
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptGraphEditor\JavascriptGraphConnectionDrawingPolicy.cpp(50): error C2227: left of '->GetSchema' must point to class/struct/union/generic type
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptGraphEditor\JavascriptGraphConnectionDrawingPolicy.cpp(51): error C3536: 'Schema': cannot be used before it is initialized
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptGraphEditor\JavascriptGraphConnectionDrawingPolicy.cpp(51): error C2227: left of '->OnDrawSplineWithArrow' must point to class/struct/union/generic type
1>  C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptGraphEditor\JavascriptGraphConnectionDrawingPolicy.cpp(51): note: type is 'int'
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptGraphEditor\JavascriptGraphConnectionDrawingPolicy.cpp(51): error C2228: left of '.IsBound' must have class/struct/union
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptGraphEditor\JavascriptGraphConnectionDrawingPolicy.cpp(53): error C2227: left of '->OnDrawSplineWithArrow' must point to class/struct/union/generic type
1>  C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptGraphEditor\JavascriptGraphConnectionDrawingPolicy.cpp(53): note: type is 'int'
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptGraphEditor\JavascriptGraphConnectionDrawingPolicy.cpp(53): error C2228: left of '.Execute' must have class/struct/union
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptGraphEditor\JavascriptGraphConnectionDrawingPolicy.cpp(63): error C2027: use of undefined type 'UEdGraph'
1>  c:\users\youdaman\desktop\myproject\plugins\unrealjs\source\javascriptgrapheditor\JavascriptGraphEditorLibrary.h(9): note: see declaration of 'UEdGraph'
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptGraphEditor\JavascriptGraphConnectionDrawingPolicy.cpp(63): error C2227: left of '->GetSchema' must point to class/struct/union/generic type
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptGraphEditor\JavascriptGraphConnectionDrawingPolicy.cpp(64): error C3536: 'Schema': cannot be used before it is initialized
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptGraphEditor\JavascriptGraphConnectionDrawingPolicy.cpp(64): error C2227: left of '->OnDrawSplineWithArrow_Geom' must point to class/struct/union/generic type
1>  C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptGraphEditor\JavascriptGraphConnectionDrawingPolicy.cpp(64): note: type is 'int'
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptGraphEditor\JavascriptGraphConnectionDrawingPolicy.cpp(64): error C2228: left of '.IsBound' must have class/struct/union
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptGraphEditor\JavascriptGraphConnectionDrawingPolicy.cpp(66): error C2227: left of '->OnDrawSplineWithArrow_Geom' must point to class/struct/union/generic type
1>  C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptGraphEditor\JavascriptGraphConnectionDrawingPolicy.cpp(66): note: type is 'int'
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptGraphEditor\JavascriptGraphConnectionDrawingPolicy.cpp(66): error C2228: left of '.Execute' must have class/struct/union
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptGraphEditor\JavascriptGraphConnectionDrawingPolicy.cpp(76): error C2027: use of undefined type 'UEdGraph'
1>  c:\users\youdaman\desktop\myproject\plugins\unrealjs\source\javascriptgrapheditor\JavascriptGraphEditorLibrary.h(9): note: see declaration of 'UEdGraph'
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptGraphEditor\JavascriptGraphConnectionDrawingPolicy.cpp(76): error C2227: left of '->GetSchema' must point to class/struct/union/generic type
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptGraphEditor\JavascriptGraphConnectionDrawingPolicy.cpp(77): error C3536: 'Schema': cannot be used before it is initialized
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptGraphEditor\JavascriptGraphConnectionDrawingPolicy.cpp(77): error C2227: left of '->OnComputeSplineTangent' must point to class/struct/union/generic type
1>  C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptGraphEditor\JavascriptGraphConnectionDrawingPolicy.cpp(77): note: type is 'int'
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptGraphEditor\JavascriptGraphConnectionDrawingPolicy.cpp(77): error C2228: left of '.IsBound' must have class/struct/union
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptGraphEditor\JavascriptGraphConnectionDrawingPolicy.cpp(79): error C2227: left of '->OnComputeSplineTangent' must point to class/struct/union/generic type
1>  C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptGraphEditor\JavascriptGraphConnectionDrawingPolicy.cpp(79): note: type is 'int'
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptGraphEditor\JavascriptGraphConnectionDrawingPolicy.cpp(79): error C2228: left of '.Execute' must have class/struct/union
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptGraphEditor\JavascriptGraphConnectionDrawingPolicy.cpp(89): error C2027: use of undefined type 'UEdGraph'
1>  c:\users\youdaman\desktop\myproject\plugins\unrealjs\source\javascriptgrapheditor\JavascriptGraphEditorLibrary.h(9): note: see declaration of 'UEdGraph'
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptGraphEditor\JavascriptGraphConnectionDrawingPolicy.cpp(89): error C2227: left of '->GetSchema' must point to class/struct/union/generic type
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptGraphEditor\JavascriptGraphConnectionDrawingPolicy.cpp(90): error C3536: 'Schema': cannot be used before it is initialized
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptGraphEditor\JavascriptGraphConnectionDrawingPolicy.cpp(90): error C2227: left of '->OnUsingNodeWidgetMap' must point to class/struct/union/generic type
1>  C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptGraphEditor\JavascriptGraphConnectionDrawingPolicy.cpp(90): note: type is 'int'
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptGraphEditor\JavascriptGraphConnectionDrawingPolicy.cpp(90): error C2228: left of '.IsBound' must have class/struct/union
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptGraphEditor\JavascriptGraphConnectionDrawingPolicy.cpp(92): error C2227: left of '->OnUsingNodeWidgetMap' must point to class/struct/union/generic type
1>  C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptGraphEditor\JavascriptGraphConnectionDrawingPolicy.cpp(92): note: type is 'int'
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptGraphEditor\JavascriptGraphConnectionDrawingPolicy.cpp(92): error C2228: left of '.Execute' must have class/struct/union
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptGraphEditor\JavascriptGraphConnectionDrawingPolicy.cpp(117): error C2027: use of undefined type 'UEdGraph'
1>  c:\users\youdaman\desktop\myproject\plugins\unrealjs\source\javascriptgrapheditor\JavascriptGraphEditorLibrary.h(9): note: see declaration of 'UEdGraph'
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptGraphEditor\JavascriptGraphConnectionDrawingPolicy.cpp(117): error C2227: left of '->GetSchema' must point to class/struct/union/generic type
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptGraphEditor\JavascriptGraphConnectionDrawingPolicy.cpp(119): error C3536: 'Schema': cannot be used before it is initialized
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptGraphEditor\JavascriptGraphConnectionDrawingPolicy.cpp(119): error C2227: left of '->OnDetermineLinkGeometry' must point to class/struct/union/generic type
1>  C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptGraphEditor\JavascriptGraphConnectionDrawingPolicy.cpp(119): note: type is 'int'
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptGraphEditor\JavascriptGraphConnectionDrawingPolicy.cpp(119): error C2228: left of '.IsBound' must have class/struct/union
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptGraphEditor\JavascriptGraphConnectionDrawingPolicy.cpp(124): error C2227: left of '->OnDetermineLinkGeometry' must point to class/struct/union/generic type
1>  C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptGraphEditor\JavascriptGraphConnectionDrawingPolicy.cpp(124): note: type is 'int'
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptGraphEditor\JavascriptGraphConnectionDrawingPolicy.cpp(124): error C2228: left of '.Execute' must have class/struct/union
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptGraphEditor\JavascriptGraphEdGraph.cpp(67): error C2027: use of undefined type 'UEdGraph'
1>  c:\users\youdaman\desktop\myproject\plugins\unrealjs\source\javascriptgrapheditor\JavascriptGraphEditorLibrary.h(9): note: see declaration of 'UEdGraph'
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptGraphEditor\JavascriptGraphEdGraph.cpp(71): error C3861: 'Modify': identifier not found
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptGraphEditor\JavascriptGraphEditorLibrary.cpp(29): error C2061: syntax error: identifier 'FGraphNodeCreator'
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptGraphEditor\JavascriptGraphEditorLibrary.cpp(30): error C2039: 'Instance': is not a member of 'FJavascriptNodeCreator'
1>  c:\users\youdaman\desktop\myproject\plugins\unrealjs\source\javascriptgrapheditor\JavascriptGraphEditorLibrary.h(171): note: see declaration of 'FJavascriptNodeCreator'
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptGraphEditor\JavascriptGraphEditorLibrary.cpp(30): error C2061: syntax error: identifier 'FGraphNodeCreator'
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptGraphEditor\JavascriptGraphEditorLibrary.cpp(31): error C3536: 'Creator': cannot be used before it is initialized
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptGraphEditor\JavascriptGraphEditorLibrary.cpp(31): error C2227: left of '->CreateNode' must point to class/struct/union/generic type
1>  C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptGraphEditor\JavascriptGraphEditorLibrary.cpp(31): note: type is 'int'
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptGraphEditor\JavascriptGraphEditorLibrary.cpp(37): error C2039: 'Instance': is not a member of 'FJavascriptNodeCreator'
1>  c:\users\youdaman\desktop\myproject\plugins\unrealjs\source\javascriptgrapheditor\JavascriptGraphEditorLibrary.h(171): note: see declaration of 'FJavascriptNodeCreator'
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptGraphEditor\JavascriptGraphEditorLibrary.cpp(37): error C2227: left of '->Finalize' must point to class/struct/union/generic type
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptEditor\JavascriptEditorLibrary.h(29): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptEditor\JavascriptEditorLibrary.h(29): error C2143: syntax error: missing ';' before '*'
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptEditor\JavascriptEditorLibrary.h(29): error C2238: unexpected token(s) preceding ';'
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptEditor\JavascriptEditorLibrary.h(31): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptEditor\JavascriptEditorLibrary.h(31): error C2143: syntax error: missing ';' before '*'
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptEditor\JavascriptEditorLibrary.h(31): error C2086: 'const int FJavascriptTransaction::FTransaction': redefinition
1>  C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptEditor\JavascriptEditorLibrary.h(29): note: see declaration of 'FJavascriptTransaction::FTransaction'
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptEditor\JavascriptEditorLibrary.h(32): error C2334: unexpected token(s) preceding '{'; skipping apparent function body
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptEditor\JavascriptEditorLibrary.h(45): error C2065: 'FWorkspaceItem': undeclared identifier
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptEditor\JavascriptEditorLibrary.h(45): error C2923: 'TSharedPtr': 'FWorkspaceItem' is not a valid template type argument for parameter 'ObjectType'
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptEditor\JavascriptEditorLibrary.h(47): error C4624: 'FJavascriptWorkspaceItem': destructor was implicitly defined as deleted
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptEditor\JavascriptEditorLibrary.h(65): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptEditor\JavascriptEditorLibrary.h(65): error C2143: syntax error: missing ',' before '*'
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptEditor\JavascriptEditorLibrary.h(69): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptEditor\JavascriptEditorLibrary.h(69): error C2143: syntax error: missing ';' before '*'
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptEditor\JavascriptEditorLibrary.h(69): error C2238: unexpected token(s) preceding ';'
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptEditor\JavascriptEditorLibrary.h(63): error C2789: 'FJavascriptViewportClick::FViewportClick': an object of const-qualified type must be initialized
1>  C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptEditor\JavascriptEditorLibrary.h(69): note: see declaration of 'FJavascriptViewportClick::FViewportClick'
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptEditor\JavascriptEditorLibrary.h(65): error C2065: 'Other': undeclared identifier
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptEditor\JavascriptEditorLibrary.h(67): error C2789: 'FJavascriptViewportClick::FViewportClick': an object of const-qualified type must be initialized
1>  C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptEditor\JavascriptEditorLibrary.h(69): note: see declaration of 'FJavascriptViewportClick::FViewportClick'
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptEditor\JavascriptEditorLibrary.h(67): error C2614: 'FJavascriptViewportClick': illegal member initialization: 'Click' is not a base or member
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptEditor\JavascriptEditorLibrary.h(209): error C2061: syntax error: identifier 'EBrushType'
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptEditor\JavascriptEditorLibrary.h(29): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptEditor\JavascriptEditorLibrary.h(29): error C2143: syntax error: missing ';' before '*'
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptEditor\JavascriptEditorLibrary.h(29): error C2238: unexpected token(s) preceding ';'
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptEditor\JavascriptEditorLibrary.h(31): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptEditor\JavascriptEditorLibrary.h(31): error C2143: syntax error: missing ';' before '*'
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptEditor\JavascriptEditorLibrary.h(31): error C2086: 'const int FJavascriptTransaction::FTransaction': redefinition
1>  C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptEditor\JavascriptEditorLibrary.h(29): note: see declaration of 'FJavascriptTransaction::FTransaction'
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptEditor\JavascriptEditorLibrary.h(32): error C2334: unexpected token(s) preceding '{'; skipping apparent function body
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptEditor\JavascriptEditorLibrary.h(45): error C2065: 'FWorkspaceItem': undeclared identifier
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptEditor\JavascriptEditorLibrary.h(45): error C2923: 'TSharedPtr': 'FWorkspaceItem' is not a valid template type argument for parameter 'ObjectType'
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptEditor\JavascriptEditorLibrary.h(47): error C4624: 'FJavascriptWorkspaceItem': destructor was implicitly defined as deleted
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptEditor\JavascriptEditorLibrary.h(65): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptEditor\JavascriptEditorLibrary.h(112): error C3861: 'EBrushType': identifier not found
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptEditor\JavascriptEditorLibrary.h(65): error C2143: syntax error: missing ',' before '*'
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptEditor\JavascriptEditorLibrary.h(69): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptEditor\JavascriptEditorLibrary.h(69): error C2143: syntax error: missing ';' before '*'
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptEditor\JavascriptEditorLibrary.h(69): error C2238: unexpected token(s) preceding ';'
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptEditor\JavascriptEditorLibrary.h(63): error C2789: 'FJavascriptViewportClick::FViewportClick': an object of const-qualified type must be initialized
1>  C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptEditor\JavascriptEditorLibrary.h(69): note: see declaration of 'FJavascriptViewportClick::FViewportClick'
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptEditor\JavascriptEditorLibrary.h(65): error C2065: 'Other': undeclared identifier
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptEditor\JavascriptEditorLibrary.h(67): error C2789: 'FJavascriptViewportClick::FViewportClick': an object of const-qualified type must be initialized
1>  C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptEditor\JavascriptEditorLibrary.h(69): note: see declaration of 'FJavascriptViewportClick::FViewportClick'
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptEditor\JavascriptEditorLibrary.h(67): error C2614: 'FJavascriptViewportClick': illegal member initialization: 'Click' is not a base or member
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptEditor\JavascriptEditorLibrary.h(209): error C2061: syntax error: identifier 'EBrushType'
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptEditor\JavascriptEditorLibrary.h(112): error C3861: 'EBrushType': identifier not found
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptGraphEditor\JavascriptGraphEditorWidget.cpp(18): error C2065: 'SBox': undeclared identifier
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptGraphEditor\JavascriptGraphEditorWidget.cpp(18): error C2672: 'MakeTDecl': no matching overloaded function found
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptGraphEditor\JavascriptGraphEditorWidget.cpp(18): error C2974: 'MakeTDecl': invalid template argument for 'WidgetType', type expected
1>  C:\Program Files\Epic Games\UE_4.15\Engine\Source\Runtime\SlateCore\Public\Widgets/DeclarativeSyntaxSupport.h(1098): note: see declaration of 'MakeTDecl'
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptGraphEditor\JavascriptGraphEditorWidget.cpp(18): error C2653: 'SBox': is not a class or namespace name
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptGraphEditor\JavascriptGraphEditorWidget.cpp(18): error C3861: 'FArguments': identifier not found
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptGraphEditor\JavascriptGraphEditorWidget.cpp(26): error C2664: 'SGraphEditor::FArguments::WidgetArgsType &SGraphEditor::FArguments::GraphToEdit(UEdGraph *)': cannot convert argument 1 from 'UJavascriptGraphEdGraph *' to 'UEdGraph *'
1>  C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptGraphEditor\JavascriptGraphEditorWidget.cpp(26): note: Types pointed to are unrelated; conversion requires reinterpret_cast, C-style cast or function-style cast
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptGraphEditor\JavascriptGraphEditorWidget.cpp(27): error C2228: left of '.GraphEvents' must have class/struct/union
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptGraphEditor\JavascriptGraphEditorWidget.cpp(28): error C2228: left of '.AutoExpandActionMenu' must have class/struct/union
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptGraphEditor\JavascriptGraphEditorWidget.cpp(29): error C2228: left of '.ShowGraphStateOverlay' must have class/struct/union
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptGraphEditor\JavascriptGraphEditorWidget.cpp(40): error C2039: 'bAllowDeletion': is not a member of 'UJavascriptGraphEdGraph'
1>  c:\users\youdaman\desktop\myproject\plugins\unrealjs\source\javascriptgrapheditor\JavascriptGraphEditorWidget.h(6): note: see declaration of 'UJavascriptGraphEdGraph'
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptGraphEditor\JavascriptGraphEditorWidget.cpp(43): error C2039: 'GetSchema': is not a member of 'UJavascriptGraphEdGraph'
1>  c:\users\youdaman\desktop\myproject\plugins\unrealjs\source\javascriptgrapheditor\JavascriptGraphEditorWidget.h(6): note: see declaration of 'UJavascriptGraphEdGraph'
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptGraphEditor\JavascriptGraphEditorWidget.cpp(44): error C2664: 'void UEdGraphSchema::CreateDefaultNodesForGraph(UEdGraph &) const': cannot convert argument 1 from 'UJavascriptGraphEdGraph' to 'UEdGraph &'
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptGraphEditor\SJavascriptGraphEdNode.cpp(25): error C2065: 'SBox': undeclared identifier
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptGraphEditor\SJavascriptGraphEdNode.cpp(25): error C2672: 'MakeTDecl': no matching overloaded function found
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptGraphEditor\SJavascriptGraphEdNode.cpp(25): error C2974: 'MakeTDecl': invalid template argument for 'WidgetType', type expected
1>  C:\Program Files\Epic Games\UE_4.15\Engine\Source\Runtime\SlateCore\Public\Widgets/DeclarativeSyntaxSupport.h(1098): note: see declaration of 'MakeTDecl'
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptGraphEditor\SJavascriptGraphEdNode.cpp(25): error C2653: 'SBox': is not a class or namespace name
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptGraphEditor\SJavascriptGraphEdNode.cpp(26): error C2065: 'SBox': undeclared identifier
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptGraphEditor\SJavascriptGraphEdNode.cpp(26): error C2672: 'MakeTDecl': no matching overloaded function found
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptGraphEditor\SJavascriptGraphEdNode.cpp(26): error C2974: 'MakeTDecl': invalid template argument for 'WidgetType', type expected
1>  C:\Program Files\Epic Games\UE_4.15\Engine\Source\Runtime\SlateCore\Public\Widgets/DeclarativeSyntaxSupport.h(1098): note: see declaration of 'MakeTDecl'
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptGraphEditor\SJavascriptGraphEdNode.cpp(26): error C2653: 'SBox': is not a class or namespace name
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptGraphEditor\SJavascriptGraphEdNode.cpp(26): fatal error C1003: error count exceeds 100; stopping compilation
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptEditor\JavascriptEditorEngineLibrary.h(58): error C2061: syntax error: identifier 'EBrushType'
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptEditor\JavascriptEditorEngineLibrary.h(11): error C3861: 'EBrushType': identifier not found
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptEditor\JavascriptEditorEngineLibrary.h(11): error C3861: 'ECsgOper': identifier not found
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptEditor\JavascriptEditorEngineLibrary.h(58): error C2061: syntax error: identifier 'EBrushType'
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptEditor\JavascriptEditorEngineLibrary.h(11): error C3861: 'EBrushType': identifier not found
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptEditor\JavascriptEditorEngineLibrary.h(11): error C3861: 'ECsgOper': identifier not found
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptEditor\JavascriptEditorTab.h(97): error C4624: 'UJavascriptEditorTab': destructor was implicitly defined as deleted
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptEditor\JavascriptEditorTab.h(97): error C2282: 'UJavascriptEditorTab::~UJavascriptEditorTab' cannot override 'UObject::~UObject'
1>  C:\Program Files\Epic Games\UE_4.15\Engine\Source\Runtime\CoreUObject\Public\UObject/Object.h(1257): note: 'UObject::~UObject' is not deleted
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\V8\Private\JavascriptContext_Private.cpp(1891): error C2065: 'PPF_Localized': undeclared identifier
1>  Module.JavascriptEditor.cpp
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptEditor\JavascriptEditorTab.h(97): error C4624: 'UJavascriptEditorTab': destructor was implicitly defined as deleted
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptEditor\JavascriptEditorTab.h(97): error C2282: 'UJavascriptEditorTab::~UJavascriptEditorTab' cannot override 'UObject::~UObject'
1>  C:\Program Files\Epic Games\UE_4.15\Engine\Source\Runtime\CoreUObject\Public\UObject/Object.h(1257): note: 'UObject::~UObject' is not deleted
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptEditor\JavascriptEditorTabManager.h(26): error C2065: 'SBox': undeclared identifier
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptEditor\JavascriptEditorTabManager.h(26): error C2923: 'TSharedRef': 'SBox' is not a valid template type argument for parameter 'ObjectType'
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptEditor\JavascriptEditorToolbar.h(23): error C2065: 'SBox': undeclared identifier
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptEditor\JavascriptEditorToolbar.h(23): error C2923: 'TSharedRef': 'SBox' is not a valid template type argument for parameter 'ObjectType'
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptEditor\JavascriptEditorTabManager.h(26): error C2065: 'SBox': undeclared identifier
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptEditor\JavascriptEditorTabManager.h(26): error C2923: 'TSharedRef': 'SBox' is not a valid template type argument for parameter 'ObjectType'
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptEditor\JavascriptEditorToolbar.h(23): error C2065: 'SBox': undeclared identifier
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptEditor\JavascriptEditorToolbar.h(23): error C2923: 'TSharedRef': 'SBox' is not a valid template type argument for parameter 'ObjectType'
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptEditor\JavascriptEditorViewport.h(165): error C2061: syntax error: identifier 'ELevelViewportType'
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptEditor\JavascriptEditorViewport.h(16): error C3861: 'ELevelViewportType': identifier not found
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptEditor\JavascriptEditorViewport.h(165): error C2061: syntax error: identifier 'ELevelViewportType'
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptEditor\JavascriptEditorViewport.h(16): error C3861: 'ELevelViewportType': identifier not found
1>c:\users\youdaman\desktop\myproject\plugins\unrealjs\source\javascripteditor\JavascriptEditorGlobalDelegates.h(53): error C2065: 'ELevelViewportType': undeclared identifier
1>c:\users\youdaman\desktop\myproject\plugins\unrealjs\source\javascripteditor\JavascriptEditorGlobalDelegates.h(53): error C2923: 'TEnumAsByte': 'ELevelViewportType' is not a valid template type argument for parameter 'TEnum'
1>c:\users\youdaman\desktop\myproject\plugins\unrealjs\source\javascripteditor\JavascriptEditorGlobalDelegates.h(53): error C4624: 'JavascriptEditorGlobalDelegates_eventOnEditorCameraMoved_Parms': destructor was implicitly defined as deleted
1>c:\users\youdaman\desktop\myproject\plugins\unrealjs\source\javascripteditor\JavascriptEditorGlobalDelegates.h(178): error C2061: syntax error: identifier 'ELevelViewportType'
1>c:\users\youdaman\desktop\myproject\plugins\unrealjs\source\javascripteditor\JavascriptEditorGlobalDelegates.h(56): error C2065: 'P_FINISH': undeclared identifier
1>c:\users\youdaman\desktop\myproject\plugins\unrealjs\source\javascripteditor\JavascriptEditorGlobalDelegates.h(56): error C2065: 'P_NATIVE_BEGIN': undeclared identifier
1>c:\users\youdaman\desktop\myproject\plugins\unrealjs\source\javascripteditor\JavascriptEditorGlobalDelegates.h(56): error C2065: 'P_NATIVE_END': undeclared identifier
1>c:\users\youdaman\desktop\myproject\plugins\unrealjs\source\javascripteditor\JavascriptEditorGlobalDelegates.h(56): error C2275: 'UStrProperty': illegal use of this type as an expression
1>  C:\Program Files\Epic Games\UE_4.15\Engine\Source\Runtime\CoreUObject\Public\Templates/Casts.h(363): note: see declaration of 'UStrProperty'
1>c:\users\youdaman\desktop\myproject\plugins\unrealjs\source\javascripteditor\JavascriptEditorGlobalDelegates.h(56): error C2065: 'Z_Param_Key': undeclared identifier
1>c:\users\youdaman\desktop\myproject\plugins\unrealjs\source\javascripteditor\JavascriptEditorGlobalDelegates.h(56): error C3861: 'P_GET_PROPERTY': identifier not found
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Intermediate\Build\Win64\UE4Editor\Inc\JavascriptEditor\JavascriptEditor.generated.1.cpp(275): error C2511: 'void UJavascriptEditorGlobalDelegates::OnEditorCameraMoved(const FVector &,const FRotator &,ELevelViewportType,int32)': overloaded member function not found in 'UJavascriptEditorGlobalDelegates'
1>  C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptEditor\JavascriptEditorGlobalDelegates.h(54): note: see declaration of 'UJavascriptEditorGlobalDelegates'
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Intermediate\Build\Win64\UE4Editor\Inc\JavascriptEditor\JavascriptEditor.generated.1.cpp(279): error C2678: binary '=': no operator found which takes a left-hand operand of type 'TEnumAsByte' (or there is no acceptable conversion)
1>  c:\program files\epic games\ue_4.15\engine\source\runtime\core\public\Containers/EnumAsByte.h(82): note: could be 'TEnumAsByte<TEnum> &TEnumAsByte<TEnum>::operator =(TEnum)'
1>  c:\program files\epic games\ue_4.15\engine\source\runtime\core\public\Containers/EnumAsByte.h(71): note: or       'TEnumAsByte<TEnum> &TEnumAsByte<TEnum>::operator =(TEnumAsByte<TEnum>)'
1>  C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Intermediate\Build\Win64\UE4Editor\Inc\JavascriptEditor\JavascriptEditor.generated.1.cpp(279): note: while trying to match the argument list '(TEnumAsByte, ELevelViewportType)'
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Intermediate\Build\Win64\UE4Editor\Inc\JavascriptEditor\JavascriptEditor.generated.1.cpp(279): error C2582: 'operator =' function is unavailable in 'TEnumAsByte'
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Intermediate\Build\Win64\UE4Editor\Inc\JavascriptEditor\JavascriptEditor.generated.1.cpp(281): error C2352: 'UObject::FindFunctionChecked': illegal call of non-static member function
1>  C:\Program Files\Epic Games\UE_4.15\Engine\Source\Runtime\CoreUObject\Public\UObject/Object.h(808): note: see declaration of 'UObject::FindFunctionChecked'
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Intermediate\Build\Win64\UE4Editor\Inc\JavascriptEditor\JavascriptEditor.generated.1.cpp(495): error C2039: 'StaticConfigName': is not a member of 'UJavascriptInputEventStateLibrary'
1>  C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptEditor\JavascriptInputEventStateLibrary.h(24): note: see declaration of 'UJavascriptInputEventStateLibrary'
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Intermediate\Build\Win64\UE4Editor\Inc\JavascriptEditor\JavascriptEditor.generated.1.cpp(495): error C3861: 'StaticConfigName': identifier not found
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Intermediate\Build\Win64\UE4Editor\Inc\JavascriptEditor\JavascriptEditor.generated.1.cpp(495): error C2039: 'AddReferencedObjects': is not a member of 'UJavascriptInputEventStateLibrary'
1>  C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptEditor\JavascriptInputEventStateLibrary.h(24): note: see declaration of 'UJavascriptInputEventStateLibrary'
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Intermediate\Build\Win64\UE4Editor\Inc\JavascriptEditor\JavascriptEditor.generated.1.cpp(495): error C2065: 'AddReferencedObjects': undeclared identifier
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Intermediate\Build\Win64\UE4Editor\Inc\JavascriptEditor\JavascriptEditor.generated.1.cpp(495): error C3083: 'Super': the symbol to the left of a '::' must be a type
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Intermediate\Build\Win64\UE4Editor\Inc\JavascriptEditor\JavascriptEditor.generated.1.cpp(495): error C3083: 'WithinClass': the symbol to the left of a '::' must be a type
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Intermediate\Build\Win64\UE4Editor\Inc\JavascriptEditor\JavascriptEditor.generated.1.cpp(3638): error C2614: 'UJavascriptInputEventStateLibrary': illegal member initialization: 'Super' is not a base or member
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Intermediate\Build\Win64\UE4Editor\Inc\JavascriptEditor\JavascriptEditor.generated.1.cpp(3798): error C4624: 'Z_Construct_UFunction_UJavascriptEditorLibrary_AddGroup::JavascriptEditorLibrary_eventAddGroup_Parms': destructor was implicitly defined as deleted
1>  Module.JavascriptConsole.cpp
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Intermediate\Build\Win64\UE4Editor\Inc\JavascriptEditor\JavascriptEditor.generated.1.cpp(5335): error C4624: 'Z_Construct_UFunction_UJavascriptEditorLibrary_GetGroup::JavascriptEditorLibrary_eventGetGroup_Parms': destructor was implicitly defined as deleted
1>  JavascriptGraphEditor.generated.cpp
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptUMG\JavascriptMenuLibrary.h(155): error C2027: use of undefined type 'UTextProperty'
1>  C:\Program Files\Epic Games\UE_4.15\Engine\Source\Runtime\CoreUObject\Public\Templates/Casts.h(363): note: see declaration of 'UTextProperty'
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptUMG\JavascriptMenuLibrary.h(155): error C2065: 'TCppType': undeclared identifier
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptUMG\JavascriptMenuLibrary.h(155): error C2146: syntax error: missing ';' before identifier 'Z_Param_Out_InContextDescTemp'
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptUMG\JavascriptMenuLibrary.h(155): error C2065: 'Z_Param_Out_InContextDescTemp': undeclared identifier
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptUMG\JavascriptMenuLibrary.h(155): error C3861: 'GetDefaultPropertyValue': identifier not found
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptUMG\JavascriptMenuLibrary.h(155): error C2065: 'Z_Param_Out_InContextDesc': undeclared identifier
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptUMG\JavascriptMenuLibrary.h(155): error C2146: syntax error: missing ';' before identifier 'Z_Param_Out_InMenuLabelTemp'
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptUMG\JavascriptMenuLibrary.h(155): error C2065: 'Z_Param_Out_InMenuLabelTemp': undeclared identifier
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptUMG\JavascriptMenuLibrary.h(155): error C2065: 'Z_Param_Out_InMenuLabel': undeclared identifier
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptUMG\JavascriptMenuLibrary.h(155): error C2146: syntax error: missing ';' before identifier 'Z_Param_Out_InToolTipTemp'
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptUMG\JavascriptMenuLibrary.h(155): error C2065: 'Z_Param_Out_InToolTipTemp': undeclared identifier
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptUMG\JavascriptMenuLibrary.h(155): error C2065: 'Z_Param_Out_InToolTip': undeclared identifier
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptUMG\JavascriptMenuLibrary.h(155): error C2146: syntax error: missing ';' before identifier 'Z_Param_Out_LabelTemp'
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptUMG\JavascriptMenuLibrary.h(155): error C2065: 'Z_Param_Out_LabelTemp': undeclared identifier
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptUMG\JavascriptMenuLibrary.h(155): error C2065: 'Z_Param_Out_Label': undeclared identifier
1>c:\users\youdaman\desktop\myproject\plugins\unrealjs\source\javascripteditor\JavascriptInputEventStateLibrary.h(13): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\users\youdaman\desktop\myproject\plugins\unrealjs\source\javascripteditor\JavascriptInputEventStateLibrary.h(13): error C2143: syntax error: missing ',' before '&'
1>c:\users\youdaman\desktop\myproject\plugins\unrealjs\source\javascripteditor\JavascriptInputEventStateLibrary.h(17): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\users\youdaman\desktop\myproject\plugins\unrealjs\source\javascripteditor\JavascriptInputEventStateLibrary.h(17): error C2143: syntax error: missing ';' before '*'
1>c:\users\youdaman\desktop\myproject\plugins\unrealjs\source\javascripteditor\JavascriptInputEventStateLibrary.h(17): error C2238: unexpected token(s) preceding ';'
1>c:\users\youdaman\desktop\myproject\plugins\unrealjs\source\javascripteditor\JavascriptInputEventStateLibrary.h(11): error C2789: 'FJavascriptInputEventState::FInputEventState': an object of const-qualified type must be initialized
1>  c:\users\youdaman\desktop\myproject\plugins\unrealjs\source\javascripteditor\JavascriptInputEventStateLibrary.h(17): note: see declaration of 'FJavascriptInputEventState::FInputEventState'
1>c:\users\youdaman\desktop\myproject\plugins\unrealjs\source\javascripteditor\JavascriptInputEventStateLibrary.h(13): error C2065: 'InInputEvent': undeclared identifier
1>c:\users\youdaman\desktop\myproject\plugins\unrealjs\source\javascripteditor\JavascriptInputEventStateLibrary.h(15): error C2789: 'FJavascriptInputEventState::FInputEventState': an object of const-qualified type must be initialized
1>  c:\users\youdaman\desktop\myproject\plugins\unrealjs\source\javascripteditor\JavascriptInputEventStateLibrary.h(17): note: see declaration of 'FJavascriptInputEventState::FInputEventState'
1>c:\users\youdaman\desktop\myproject\plugins\unrealjs\source\javascripteditor\JavascriptInputEventStateLibrary.h(15): error C2614: 'FJavascriptInputEventState': illegal member initialization: 'InputEvent' is not a base or member
1>c:\users\youdaman\desktop\myproject\plugins\unrealjs\source\javascripteditor\JavascriptEditorLibrary.h(29): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\users\youdaman\desktop\myproject\plugins\unrealjs\source\javascripteditor\JavascriptEditorLibrary.h(29): error C2143: syntax error: missing ';' before '*'
1>c:\users\youdaman\desktop\myproject\plugins\unrealjs\source\javascripteditor\JavascriptEditorLibrary.h(29): error C2238: unexpected token(s) preceding ';'
1>c:\users\youdaman\desktop\myproject\plugins\unrealjs\source\javascripteditor\JavascriptEditorLibrary.h(31): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\users\youdaman\desktop\myproject\plugins\unrealjs\source\javascripteditor\JavascriptEditorLibrary.h(31): error C2143: syntax error: missing ';' before '*'
1>c:\users\youdaman\desktop\myproject\plugins\unrealjs\source\javascripteditor\JavascriptEditorLibrary.h(31): error C2086: 'const int FJavascriptTransaction::FTransaction': redefinition
1>  c:\users\youdaman\desktop\myproject\plugins\unrealjs\source\javascripteditor\JavascriptEditorLibrary.h(29): note: see declaration of 'FJavascriptTransaction::FTransaction'
1>c:\users\youdaman\desktop\myproject\plugins\unrealjs\source\javascripteditor\JavascriptEditorLibrary.h(32): error C2334: unexpected token(s) preceding '{'; skipping apparent function body
1>c:\users\youdaman\desktop\myproject\plugins\unrealjs\source\javascripteditor\JavascriptEditorLibrary.h(65): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\users\youdaman\desktop\myproject\plugins\unrealjs\source\javascripteditor\JavascriptEditorLibrary.h(65): error C2143: syntax error: missing ',' before '*'
1>c:\users\youdaman\desktop\myproject\plugins\unrealjs\source\javascripteditor\JavascriptEditorLibrary.h(69): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\users\youdaman\desktop\myproject\plugins\unrealjs\source\javascripteditor\JavascriptEditorLibrary.h(69): error C2143: syntax error: missing ';' before '*'
1>c:\users\youdaman\desktop\myproject\plugins\unrealjs\source\javascripteditor\JavascriptEditorLibrary.h(69): error C2238: unexpected token(s) preceding ';'
1>c:\users\youdaman\desktop\myproject\plugins\unrealjs\source\javascripteditor\JavascriptEditorLibrary.h(63): error C2789: 'FJavascriptViewportClick::FViewportClick': an object of const-qualified type must be initialized
1>  c:\users\youdaman\desktop\myproject\plugins\unrealjs\source\javascripteditor\JavascriptEditorLibrary.h(69): note: see declaration of 'FJavascriptViewportClick::FViewportClick'
1>c:\users\youdaman\desktop\myproject\plugins\unrealjs\source\javascripteditor\JavascriptEditorLibrary.h(65): error C2065: 'Other': undeclared identifier
1>c:\users\youdaman\desktop\myproject\plugins\unrealjs\source\javascripteditor\JavascriptEditorLibrary.h(67): error C2789: 'FJavascriptViewportClick::FViewportClick': an object of const-qualified type must be initialized
1>  c:\users\youdaman\desktop\myproject\plugins\unrealjs\source\javascripteditor\JavascriptEditorLibrary.h(69): note: see declaration of 'FJavascriptViewportClick::FViewportClick'
1>c:\users\youdaman\desktop\myproject\plugins\unrealjs\source\javascripteditor\JavascriptEditorLibrary.h(67): error C2614: 'FJavascriptViewportClick': illegal member initialization: 'Click' is not a base or member
1>c:\users\youdaman\desktop\myproject\plugins\unrealjs\source\javascripteditor\JavascriptEditorLibrary.h(209): error C2061: syntax error: identifier 'EBrushType'
1>c:\users\youdaman\desktop\myproject\plugins\unrealjs\source\javascripteditor\JavascriptEditorLibrary.h(112): error C2027: use of undefined type 'UTextProperty'
1>  C:\Program Files\Epic Games\UE_4.15\Engine\Source\Runtime\CoreUObject\Public\Templates/Casts.h(363): note: see declaration of 'UTextProperty'
1>c:\users\youdaman\desktop\myproject\plugins\unrealjs\source\javascripteditor\JavascriptEditorLibrary.h(112): error C2065: 'TCppType': undeclared identifier
1>c:\users\youdaman\desktop\myproject\plugins\unrealjs\source\javascripteditor\JavascriptEditorLibrary.h(112): error C2146: syntax error: missing ';' before identifier 'Z_Param_Out_DisplayNameTemp'
1>c:\users\youdaman\desktop\myproject\plugins\unrealjs\source\javascripteditor\JavascriptEditorLibrary.h(112): error C2065: 'Z_Param_Out_DisplayNameTemp': undeclared identifier
1>c:\users\youdaman\desktop\myproject\plugins\unrealjs\source\javascripteditor\JavascriptEditorLibrary.h(112): error C3861: 'GetDefaultPropertyValue': identifier not found
1>c:\users\youdaman\desktop\myproject\plugins\unrealjs\source\javascripteditor\JavascriptEditorLibrary.h(112): error C2065: 'Z_Param_Out_DisplayName': undeclared identifier
1>c:\users\youdaman\desktop\myproject\plugins\unrealjs\source\javascripteditor\JavascriptEditorLibrary.h(112): error C3861: 'EBrushType': identifier not found
1>c:\users\youdaman\desktop\myproject\plugins\unrealjs\source\javascripteditor\JavascriptEditorLibrary.h(112): error C2146: syntax error: missing ';' before identifier 'Z_Param_Out_HeadingTextTemp'
1>c:\users\youdaman\desktop\myproject\plugins\unrealjs\source\javascripteditor\JavascriptEditorLibrary.h(112): error C2065: 'Z_Param_Out_HeadingTextTemp': undeclared identifier
1>c:\users\youdaman\desktop\myproject\plugins\unrealjs\source\javascripteditor\JavascriptEditorLibrary.h(112): error C2065: 'Z_Param_Out_HeadingText': undeclared identifier
1>c:\users\youdaman\desktop\myproject\plugins\unrealjs\source\javascriptconsole\private\SJavascriptConsole.h(47): error C2079: 'SJavascriptConsole::AnimCurveSequence' uses undefined struct 'FCurveSequence'
1>c:\users\youdaman\desktop\myproject\plugins\unrealjs\source\javascriptconsole\private\SJavascriptConsole.h(48): error C3646: 'AnimCurve': unknown override specifier
1>c:\users\youdaman\desktop\myproject\plugins\unrealjs\source\javascriptconsole\private\SJavascriptConsole.h(48): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\users\youdaman\desktop\myproject\plugins\unrealjs\source\javascriptconsole\private\SJavascriptConsole.h(49): error C3646: 'FlashCurve': unknown override specifier
1>c:\users\youdaman\desktop\myproject\plugins\unrealjs\source\javascriptconsole\private\SJavascriptConsole.h(49): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>c:\users\youdaman\desktop\myproject\plugins\unrealjs\source\javascripteditor\JavascriptUIExtender.h(27): error C2027: use of undefined type 'UTextProperty'
1>  C:\Program Files\Epic Games\UE_4.15\Engine\Source\Runtime\CoreUObject\Public\Templates/Casts.h(363): note: see declaration of 'UTextProperty'
1>c:\users\youdaman\desktop\myproject\plugins\unrealjs\source\javascripteditor\JavascriptUIExtender.h(27): error C2065: 'TCppType': undeclared identifier
1>c:\users\youdaman\desktop\myproject\plugins\unrealjs\source\javascripteditor\JavascriptUIExtender.h(27): error C2146: syntax error: missing ';' before identifier 'Z_Param_Text'
1>c:\users\youdaman\desktop\myproject\plugins\unrealjs\source\javascripteditor\JavascriptUIExtender.h(27): error C2065: 'Z_Param_Text': undeclared identifier
1>c:\users\youdaman\desktop\myproject\plugins\unrealjs\source\javascripteditor\JavascriptUIExtender.h(27): error C3861: 'GetDefaultPropertyValue': identifier not found
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptEditor\JavascriptAssetTypeActions.cpp(102): error C2653: 'FMessageDialog': is not a class or namespace name
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptEditor\JavascriptAssetTypeActions.cpp(102): error C3861: 'Open': identifier not found
1>c:\users\youdaman\desktop\myproject\plugins\unrealjs\source\javascripteditor\JavascriptEditorEngineLibrary.h(58): error C2061: syntax error: identifier 'EBrushType'
1>c:\users\youdaman\desktop\myproject\plugins\unrealjs\source\javascripteditor\JavascriptEditorEngineLibrary.h(11): error C3861: 'EBrushType': identifier not found
1>c:\users\youdaman\desktop\myproject\plugins\unrealjs\source\javascripteditor\JavascriptEditorEngineLibrary.h(11): error C3861: 'ECsgOper': identifier not found
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptEditor\JavascriptEditorEngineLibrary.cpp(8): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptEditor\JavascriptEditorEngineLibrary.cpp(8): error C2143: syntax error: missing ',' before '&'
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptEditor\JavascriptEditorEngineLibrary.cpp(8): error C2530: 'Context': references must be initialized
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptEditor\JavascriptEditorEngineLibrary.cpp(8): error C2143: syntax error: missing ';' before ':'
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptEditor\JavascriptEditorEngineLibrary.cpp(8): error C2065: 'GEngine': undeclared identifier
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptEditor\JavascriptEditorEngineLibrary.cpp(8): error C2227: left of '->GetWorldContexts' must point to class/struct/union/generic type
1>  C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptEditor\JavascriptEditorEngineLibrary.cpp(8): note: type is 'unknown-type'
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptEditor\JavascriptEditorEngineLibrary.cpp(8): error C2143: syntax error: missing ';' before ')'
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptEditor\JavascriptEditorEngineLibrary.cpp(10): error C2228: left of '.WorldType' must have class/struct/union
1>  C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptEditor\JavascriptEditorEngineLibrary.cpp(10): note: type is 'const int'
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptEditor\JavascriptEditorEngineLibrary.cpp(12): error C2228: left of '.World' must have class/struct/union
1>  C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptEditor\JavascriptEditorEngineLibrary.cpp(12): note: type is 'const int'
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptEditor\JavascriptEditorEngineLibrary.cpp(21): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptEditor\JavascriptEditorEngineLibrary.cpp(21): error C2143: syntax error: missing ',' before '&'
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptEditor\JavascriptEditorEngineLibrary.cpp(21): error C2530: 'Context': references must be initialized
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptEditor\JavascriptEditorEngineLibrary.cpp(21): error C2143: syntax error: missing ';' before ':'
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptEditor\JavascriptEditorEngineLibrary.cpp(21): error C2065: 'GEngine': undeclared identifier
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptEditor\JavascriptEditorEngineLibrary.cpp(21): error C2227: left of '->GetWorldContexts' must point to class/struct/union/generic type
1>  C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptEditor\JavascriptEditorEngineLibrary.cpp(21): note: type is 'unknown-type'
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptEditor\JavascriptEditorEngineLibrary.cpp(21): error C2143: syntax error: missing ';' before ')'
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptEditor\JavascriptEditorEngineLibrary.cpp(23): error C2228: left of '.WorldType' must have class/struct/union
1>  C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptEditor\JavascriptEditorEngineLibrary.cpp(23): note: type is 'const int'
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptEditor\JavascriptEditorEngineLibrary.cpp(25): error C2228: left of '.World' must have class/struct/union
1>  C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptEditor\JavascriptEditorEngineLibrary.cpp(25): note: type is 'const int'
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptEditor\JavascriptEditorEngineLibrary.cpp(36): error C2027: use of undefined type 'UEditorEngine'
1>  C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Intermediate\Build\Win64\UE4Editor\Inc\JavascriptEditor\JavascriptEditorEngineLibrary.generated.h(12): note: see declaration of 'UEditorEngine'
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptEditor\JavascriptEditorEngineLibrary.cpp(36): error C2227: left of '->RedrawAllViewports' must point to class/struct/union/generic type
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptEditor\JavascriptEditorEngineLibrary.cpp(43): error C2027: use of undefined type 'UEditorEngine'
1>  C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Intermediate\Build\Win64\UE4Editor\Inc\JavascriptEditor\JavascriptEditorEngineLibrary.generated.h(12): note: see declaration of 'UEditorEngine'
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptEditor\JavascriptEditorEngineLibrary.cpp(43): error C2227: left of '->Exec' must point to class/struct/union/generic type
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptEditor\JavascriptEditorEngineLibrary.cpp(50): error C2027: use of undefined type 'UEditorEngine'
1>  C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Intermediate\Build\Win64\UE4Editor\Inc\JavascriptEditor\JavascriptEditorEngineLibrary.generated.h(12): note: see declaration of 'UEditorEngine'
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptEditor\JavascriptEditorEngineLibrary.cpp(50): error C2227: left of '->FindBrushBuilder' must point to class/struct/union/generic type
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptEditor\JavascriptEditorEngineLibrary.cpp(56): error C2027: use of undefined type 'UEditorEngine'
1>  C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Intermediate\Build\Win64\UE4Editor\Inc\JavascriptEditor\JavascriptEditorEngineLibrary.generated.h(12): note: see declaration of 'UEditorEngine'
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptEditor\JavascriptEditorEngineLibrary.cpp(56): error C2227: left of '->SelectActor' must point to class/struct/union/generic type
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptEditor\JavascriptEditorEngineLibrary.cpp(61): error C2027: use of undefined type 'UEditorEngine'
1>  C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Intermediate\Build\Win64\UE4Editor\Inc\JavascriptEditor\JavascriptEditorEngineLibrary.generated.h(12): note: see declaration of 'UEditorEngine'
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptEditor\JavascriptEditorEngineLibrary.cpp(61): error C2227: left of '->CanSelectActor' must point to class/struct/union/generic type
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptEditor\JavascriptEditorEngineLibrary.cpp(66): error C2027: use of undefined type 'UEditorEngine'
1>  C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Intermediate\Build\Win64\UE4Editor\Inc\JavascriptEditor\JavascriptEditorEngineLibrary.generated.h(12): note: see declaration of 'UEditorEngine'
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptEditor\JavascriptEditorEngineLibrary.cpp(66): error C2227: left of '->SelectGroup' must point to class/struct/union/generic type
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptEditor\JavascriptEditorEngineLibrary.cpp(71): error C2027: use of undefined type 'UEditorEngine'
1>  C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Intermediate\Build\Win64\UE4Editor\Inc\JavascriptEditor\JavascriptEditorEngineLibrary.generated.h(12): note: see declaration of 'UEditorEngine'
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptEditor\JavascriptEditorEngineLibrary.cpp(71): error C2227: left of '->SelectComponent' must point to class/struct/union/generic type
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptEditor\JavascriptEditorEngineLibrary.cpp(76): error C2027: use of undefined type 'UEditorEngine'
1>  C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Intermediate\Build\Win64\UE4Editor\Inc\JavascriptEditor\JavascriptEditorEngineLibrary.generated.h(12): note: see declaration of 'UEditorEngine'
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptEditor\JavascriptEditorEngineLibrary.cpp(76): error C2227: left of '->SelectNone' must point to class/struct/union/generic type
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptEditor\JavascriptEditorEngineLibrary.cpp(81): error C2027: use of undefined type 'UEditorEngine'
1>  C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Intermediate\Build\Win64\UE4Editor\Inc\JavascriptEditor\JavascriptEditorEngineLibrary.generated.h(12): note: see declaration of 'UEditorEngine'
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptEditor\JavascriptEditorEngineLibrary.cpp(81): error C2227: left of '->GetSelectedComponents' must point to class/struct/union/generic type
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptEditor\JavascriptEditorEngineLibrary.cpp(86): error C2027: use of undefined type 'UEditorEngine'
1>  C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Intermediate\Build\Win64\UE4Editor\Inc\JavascriptEditor\JavascriptEditorEngineLibrary.generated.h(12): note: see declaration of 'UEditorEngine'
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptEditor\JavascriptEditorEngineLibrary.cpp(86): error C2227: left of '->GetSelectedObjects' must point to class/struct/union/generic type
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptEditor\JavascriptEditorEngineLibrary.cpp(91): error C2027: use of undefined type 'UEditorEngine'
1>  C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Intermediate\Build\Win64\UE4Editor\Inc\JavascriptEditor\JavascriptEditorEngineLibrary.generated.h(12): note: see declaration of 'UEditorEngine'
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptEditor\JavascriptEditorEngineLibrary.cpp(91): fatal error C1003: error count exceeds 100; stopping compilation
1>c:\users\youdaman\desktop\myproject\plugins\unrealjs\source\javascriptconsole\private\SJavascriptLog.h(98): error C2065: 'SMenuAnchor': undeclared identifier
1>c:\users\youdaman\desktop\myproject\plugins\unrealjs\source\javascriptconsole\private\SJavascriptLog.h(98): error C2923: 'TSharedPtr': 'SMenuAnchor' is not a valid template type argument for parameter 'ObjectType'
1>c:\users\youdaman\desktop\myproject\plugins\unrealjs\source\javascriptconsole\private\SJavascriptLog.h(104): error C2065: 'SListView': undeclared identifier
1>c:\users\youdaman\desktop\myproject\plugins\unrealjs\source\javascriptconsole\private\SJavascriptLog.h(104): error C2275: 'TSharedPtr<FString,0>': illegal use of this type as an expression
1>  c:\users\youdaman\desktop\myproject\plugins\unrealjs\source\javascriptconsole\private\SJavascriptLog.h(79): note: see declaration of 'TSharedPtr<FString,0>'
1>c:\users\youdaman\desktop\myproject\plugins\unrealjs\source\javascriptconsole\private\SJavascriptLog.h(104): error C2974: 'TSharedPtr': invalid template argument for 'ObjectType', type expected
1>  c:\program files\epic games\ue_4.15\engine\source\runtime\core\public\Templates/SharedPointer.h(535): note: see declaration of 'TSharedPtr'
1>c:\users\youdaman\desktop\myproject\plugins\unrealjs\source\javascriptconsole\private\SJavascriptLog.h(104): error C2059: syntax error: '>'
1>c:\users\youdaman\desktop\myproject\plugins\unrealjs\source\javascriptconsole\private\SJavascriptLog.h(104): error C2238: unexpected token(s) preceding ';'
1>c:\users\youdaman\desktop\myproject\plugins\unrealjs\source\javascriptconsole\private\SJavascriptLog.h(115): error C2065: 'STextComboBox': undeclared identifier
1>c:\users\youdaman\desktop\myproject\plugins\unrealjs\source\javascriptconsole\private\SJavascriptLog.h(115): error C2923: 'TSharedPtr': 'STextComboBox' is not a valid template type argument for parameter 'ObjectType'
1>c:\users\youdaman\desktop\myproject\plugins\unrealjs\source\javascriptconsole\private\SJavascriptLog.h(119): error C4624: 'SJavascriptConsoleInputBox': destructor was implicitly defined as deleted
1>c:\users\youdaman\desktop\myproject\plugins\unrealjs\source\javascriptconsole\private\SJavascriptLog.h(119): error C2282: 'SJavascriptConsoleInputBox::~SJavascriptConsoleInputBox' cannot override 'SCompoundWidget::~SCompoundWidget'
1>  C:\Program Files\Epic Games\UE_4.15\Engine\Source\Runtime\SlateCore\Public\Widgets/SCompoundWidget.h(101): note: 'SCompoundWidget::~SCompoundWidget' is not deleted
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptConsole\Private\JavascriptConsoleModule.cpp(61): error C2653: 'FEditorStyle': is not a class or namespace name
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptConsole\Private\JavascriptConsoleModule.cpp(61): error C3861: 'GetBrush': identifier not found
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptConsole\Private\JavascriptConsoleModule.cpp(62): error C2228: left of '.TabRole' must have class/struct/union
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptConsole\Private\JavascriptConsoleModule.cpp(63): error C2228: left of '.Label' must have class/struct/union
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptConsole\Private\JavascriptConsoleModule.cpp(75): error C2653: 'FEditorStyle': is not a class or namespace name
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptConsole\Private\JavascriptConsoleModule.cpp(75): error C3861: 'GetStyleSetName': identifier not found
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptConsole\Private\JavascriptConsoleModule.cpp(82): error C2027: use of undefined type 'FSlateApplication'
1>  C:\Program Files\Epic Games\UE_4.15\Engine\Source\Runtime\Core\Public\GenericPlatform/GenericApplication.h(15): note: see declaration of 'FSlateApplication'
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptConsole\Private\JavascriptConsoleModule.cpp(82): error C3861: 'IsInitialized': identifier not found
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptConsole\Private\JavascriptConsoleModule.cpp(105): error C2027: use of undefined type 'FSlateApplication'
1>  C:\Program Files\Epic Games\UE_4.15\Engine\Source\Runtime\Core\Public\GenericPlatform/GenericApplication.h(15): note: see declaration of 'FSlateApplication'
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptConsole\Private\JavascriptConsoleModule.cpp(105): error C3861: 'Get': identifier not found
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptConsole\Private\JavascriptConsoleModule.cpp(105): error C2228: left of '.FindWidgetWindow' must have class/struct/union
1>  C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptConsole\Private\JavascriptConsoleModule.cpp(105): note: type is 'unknown-type'
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptConsole\Private\JavascriptConsoleModule.cpp(153): error C2027: use of undefined type 'FSlateApplication'
1>  C:\Program Files\Epic Games\UE_4.15\Engine\Source\Runtime\Core\Public\GenericPlatform/GenericApplication.h(15): note: see declaration of 'FSlateApplication'
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptConsole\Private\JavascriptConsoleModule.cpp(153): error C3861: 'Get': identifier not found
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptConsole\Private\JavascriptConsoleModule.cpp(153): error C2228: left of '.FindWidgetWindow' must have class/struct/union
1>  C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptConsole\Private\JavascriptConsoleModule.cpp(153): note: type is 'unknown-type'
1>C:\Program Files\Epic Games\UE_4.15\Engine\Source\Runtime\SlateCore\Public\Widgets/DeclarativeSyntaxSupport.h(1072): error C2027: use of undefined type 'SBox'
1>  C:\Program Files\Epic Games\UE_4.15\Engine\Source\Runtime\Slate\Public\Widgets\Input\SMultiLineEditableTextBox.h(23): note: see declaration of 'SBox'
1>  C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptConsole\Private\SJavascriptConsole.cpp(35): note: see reference to class template instantiation 'TDecl<SBox,RequiredArgs::T0RequiredArgs>' being compiled
1>C:\Program Files\Epic Games\UE_4.15\Engine\Source\Runtime\SlateCore\Public\Widgets/DeclarativeSyntaxSupport.h(1072): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>C:\Program Files\Epic Games\UE_4.15\Engine\Source\Runtime\SlateCore\Public\Widgets/DeclarativeSyntaxSupport.h(1072): error C2143: syntax error: missing ',' before '&'
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptConsole\Private\SJavascriptConsole.cpp(35): error C2027: use of undefined type 'SBox'
1>  C:\Program Files\Epic Games\UE_4.15\Engine\Source\Runtime\Slate\Public\Widgets\Input\SMultiLineEditableTextBox.h(23): note: see declaration of 'SBox'
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptConsole\Private\SJavascriptConsole.cpp(36): error C2039: 'HeightOverride': is not a member of 'SJavascriptConsole::FArguments'
1>  c:\users\youdaman\desktop\myproject\plugins\unrealjs\source\javascriptconsole\private\SJavascriptConsole.h(11): note: see declaration of 'SJavascriptConsole::FArguments'
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptConsole\Private\SJavascriptConsole.cpp(39): error C2653: 'FEditorStyle': is not a class or namespace name
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptConsole\Private\SJavascriptConsole.cpp(39): error C3861: 'GetBrush': identifier not found
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptConsole\Private\SJavascriptConsole.cpp(40): error C2228: left of '.ColorAndOpacity' must have class/struct/union
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptConsole\Private\SJavascriptConsole.cpp(41): error C2228: left of '.BorderBackgroundColor' must have class/struct/union
1>C:\Program Files\Epic Games\UE_4.15\Engine\Source\Runtime\SlateCore\Public\Widgets/DeclarativeSyntaxSupport.h(1072): error C2027: use of undefined type 'SSpacer'
1>  C:\Program Files\Epic Games\UE_4.15\Engine\Source\Runtime\Slate\Public\Widgets/Layout/SScrollBar.h(17): note: see declaration of 'SSpacer'
1>  C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptConsole\Private\SJavascriptConsole.cpp(43): note: see reference to class template instantiation 'TDecl<SSpacer,RequiredArgs::T0RequiredArgs>' being compiled
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptConsole\Private\SJavascriptConsole.cpp(43): error C2027: use of undefined type 'SSpacer'
1>  C:\Program Files\Epic Games\UE_4.15\Engine\Source\Runtime\Slate\Public\Widgets/Layout/SScrollBar.h(17): note: see declaration of 'SSpacer'
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptConsole\Private\SJavascriptConsole.cpp(44): error C2679: binary '<<=': no operator found which takes a right-hand operand of type 'SJavascriptConsole::FArguments' (or there is no acceptable conversion)
1>  C:\Program Files\Epic Games\UE_4.15\Engine\Source\Runtime\SlateCore\Public\Widgets/DeclarativeSyntaxSupport.h(1072): note: could be 'TSharedRef<ObjectType,0> TDecl<SSpacer,RequiredArgs::T0RequiredArgs>::operator <<=(const int) const'
1>          with
1>          [
1>              ObjectType=SSpacer
1>          ]
1>  C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptConsole\Private\SJavascriptConsole.cpp(44): note: while trying to match the argument list '(TDecl<SSpacer,RequiredArgs::T0RequiredArgs>, SJavascriptConsole::FArguments)'
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptConsole\Private\SJavascriptConsole.cpp(53): error C2027: use of undefined type 'SBox'
1>  C:\Program Files\Epic Games\UE_4.15\Engine\Source\Runtime\Slate\Public\Widgets\Input\SMultiLineEditableTextBox.h(23): note: see declaration of 'SBox'
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptConsole\Private\SJavascriptConsole.cpp(54): error C2039: 'HeightOverride': is not a member of 'SJavascriptConsole::FArguments'
1>  c:\users\youdaman\desktop\myproject\plugins\unrealjs\source\javascriptconsole\private\SJavascriptConsole.h(11): note: see declaration of 'SJavascriptConsole::FArguments'
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptConsole\Private\SJavascriptConsole.cpp(55): error C2228: left of '.HAlign' must have class/struct/union
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptConsole\Private\SJavascriptConsole.cpp(59): error C2653: 'FEditorStyle': is not a class or namespace name
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptConsole\Private\SJavascriptConsole.cpp(59): error C3861: 'GetBrush': identifier not found
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptConsole\Private\SJavascriptConsole.cpp(60): error C2228: left of '.ColorAndOpacity' must have class/struct/union
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptConsole\Private\SJavascriptConsole.cpp(61): error C2228: left of '.BorderBackgroundColor' must have class/struct/union
1>C:\Program Files\Epic Games\UE_4.15\Engine\Source\Runtime\SlateCore\Public\Widgets/DeclarativeSyntaxSupport.h(1072): error C2027: use of undefined type 'STextBlock'
1>  C:\Program Files\Epic Games\UE_4.15\Engine\Source\Runtime\Slate\Public\Widgets\Docking\SDockTab.h(23): note: see declaration of 'STextBlock'
1>  C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptConsole\Private\SJavascriptConsole.cpp(69): note: see reference to class template instantiation 'TDecl<STextBlock,RequiredArgs::T0RequiredArgs>' being compiled
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptConsole\Private\SJavascriptConsole.cpp(69): error C2027: use of undefined type 'STextBlock'
1>  C:\Program Files\Epic Games\UE_4.15\Engine\Source\Runtime\Slate\Public\Widgets\Docking\SDockTab.h(23): note: see declaration of 'STextBlock'
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptConsole\Private\SJavascriptConsole.cpp(70): error C2039: 'Text': is not a member of 'SJavascriptConsole::FArguments'
1>  c:\users\youdaman\desktop\myproject\plugins\unrealjs\source\javascriptconsole\private\SJavascriptConsole.h(11): note: see declaration of 'SJavascriptConsole::FArguments'
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptConsole\Private\SJavascriptConsole.cpp(89): error C2440: '=': cannot convert from 'FCurveSequence' to 'int'
1>  C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptConsole\Private\SJavascriptConsole.cpp(89): note: No user-defined-conversion operator available that can perform this conversion, or the operator cannot be called
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptConsole\Private\SJavascriptConsole.cpp(90): error C2065: 'AnimCurve': undeclared identifier
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptConsole\Private\SJavascriptConsole.cpp(90): error C2228: left of '.AddCurve' must have class/struct/union
1>  C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptConsole\Private\SJavascriptConsole.cpp(90): note: type is 'int'
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptConsole\Private\SJavascriptConsole.cpp(91): error C2065: 'FlashCurve': undeclared identifier
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptConsole\Private\SJavascriptConsole.cpp(91): error C2228: left of '.AddCurve' must have class/struct/union
1>  C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptConsole\Private\SJavascriptConsole.cpp(91): note: type is 'int'
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptConsole\Private\SJavascriptConsole.cpp(93): error C2228: left of '.Play' must have class/struct/union
1>  C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptConsole\Private\SJavascriptConsole.cpp(93): note: type is 'int'
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptConsole\Private\SJavascriptConsole.cpp(105): error C2027: use of undefined type 'FSlateApplication'
1>  C:\Program Files\Epic Games\UE_4.15\Engine\Source\Runtime\Core\Public\GenericPlatform/GenericApplication.h(15): note: see declaration of 'FSlateApplication'
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptConsole\Private\SJavascriptConsole.cpp(105): error C3861: 'Get': identifier not found
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptConsole\Private\SJavascriptConsole.cpp(105): error C2228: left of '.SetKeyboardFocus' must have class/struct/union
1>  C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptConsole\Private\SJavascriptConsole.cpp(105): note: type is 'unknown-type'
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptConsole\Private\SJavascriptConsole.cpp(116): error C2065: 'AnimCurve': undeclared identifier
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptConsole\Private\SJavascriptConsole.cpp(116): error C2228: left of '.GetLerp' must have class/struct/union
1>  C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptConsole\Private\SJavascriptConsole.cpp(116): note: type is 'unknown-type'
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptConsole\Private\SJavascriptConsole.cpp(127): error C2065: 'FlashCurve': undeclared identifier
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptConsole\Private\SJavascriptConsole.cpp(127): error C2228: left of '.GetLerp' must have class/struct/union
1>  C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptConsole\Private\SJavascriptConsole.cpp(127): note: type is 'unknown-type'
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptGraphEditor\JavascriptGraphEditorLibrary.h(177): error C2065: 'FGraphNodeCreator': undeclared identifier
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptGraphEditor\JavascriptGraphEditorLibrary.h(177): error C2275: 'UEdGraphNode': illegal use of this type as an expression
1>  C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptGraphEditor\JavascriptGraphEditorLibrary.h(11): note: see declaration of 'UEdGraphNode'
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptGraphEditor\JavascriptGraphEditorLibrary.h(177): error C2974: 'TSharedPtr': invalid template argument for 'ObjectType', type expected
1>  c:\program files\epic games\ue_4.15\engine\source\runtime\core\public\Templates/SharedPointer.h(535): note: see declaration of 'TSharedPtr'
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptGraphEditor\JavascriptGraphEditorLibrary.h(177): error C2059: syntax error: '>'
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptGraphEditor\JavascriptGraphEditorLibrary.h(177): error C2238: unexpected token(s) preceding ';'
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptGraphEditor\JavascriptGraphEdGraph.h(7): error C2504: 'UEdGraph': base class undefined
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptGraphEditor\JavascriptGraphEdGraph.h(18): error C3668: 'UJavascriptGraphEdGraph::PostEditUndo': method with override specifier 'override' did not override any base class methods
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptGraphEditor\JavascriptGraphEdGraph.h(8): error C2440: 'return': cannot convert from 'UJavascriptGraphEdGraph *' to 'UObject *'
1>  C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptGraphEditor\JavascriptGraphEdGraph.h(8): note: Types pointed to are unrelated; conversion requires reinterpret_cast, C-style cast or function-style cast
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Intermediate\Build\Win64\UE4Editor\Inc\JavascriptGraphEditor\JavascriptGraphEditor.generated.cpp(334): error C2039: 'StaticConfigName': is not a member of 'UJavascriptGraphEdGraph'
1>  C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptGraphEditor\JavascriptGraphEditorWidget.h(6): note: see declaration of 'UJavascriptGraphEdGraph'
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Intermediate\Build\Win64\UE4Editor\Inc\JavascriptGraphEditor\JavascriptGraphEditor.generated.cpp(334): error C3861: 'StaticConfigName': identifier not found
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Intermediate\Build\Win64\UE4Editor\Inc\JavascriptGraphEditor\JavascriptGraphEditor.generated.cpp(334): error C2039: 'AddReferencedObjects': is not a member of 'UJavascriptGraphEdGraph'
1>  C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptGraphEditor\JavascriptGraphEditorWidget.h(6): note: see declaration of 'UJavascriptGraphEdGraph'
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Intermediate\Build\Win64\UE4Editor\Inc\JavascriptGraphEditor\JavascriptGraphEditor.generated.cpp(334): error C2065: 'AddReferencedObjects': undeclared identifier
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Intermediate\Build\Win64\UE4Editor\Inc\JavascriptGraphEditor\JavascriptGraphEditor.generated.cpp(334): error C2027: use of undefined type 'UEdGraph'
1>  c:\users\youdaman\desktop\myproject\plugins\unrealjs\intermediate\build\win64\ue4editor\inc\javascriptgrapheditor\JavascriptGraphEditorWidget.generated.h(11): note: see declaration of 'UEdGraph'
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Intermediate\Build\Win64\UE4Editor\Inc\JavascriptGraphEditor\JavascriptGraphEditor.generated.cpp(334): error C3083: 'WithinClass': the symbol to the left of a '::' must be a type
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Intermediate\Build\Win64\UE4Editor\Inc\JavascriptGraphEditor\JavascriptGraphEditor.generated.cpp(2722): error C2437: 'Super': has already been initialized
1>C:\Program Files\Epic Games\UE_4.15\Engine\Source\Runtime\Slate\Public\Widgets/Input/SMenuAnchor.h(43): error C2679: binary '<<=': no operator found which takes a right-hand operand of type 'STextBlock::FArguments::WidgetArgsType' (or there is no acceptable conversion)
1>  C:\Program Files\Epic Games\UE_4.15\Engine\Source\Runtime\SlateCore\Public\Widgets/DeclarativeSyntaxSupport.h(1072): note: could be 'TSharedRef<ObjectType,0> TDecl<STextBlock,RequiredArgs::T0RequiredArgs>::operator <<=(const int) const'
1>          with
1>          [
1>              ObjectType=STextBlock
1>          ]
1>  C:\Program Files\Epic Games\UE_4.15\Engine\Source\Runtime\Slate\Public\Widgets/Input/SMenuAnchor.h(43): note: while trying to match the argument list '(TDecl<STextBlock,RequiredArgs::T0RequiredArgs>, STextBlock::FArguments::WidgetArgsType)'
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptConsole\Private\SJavascriptLog.cpp(136): error C2512: 'TSharedPtr': no appropriate default constructor available
1>  c:\program files\epic games\ue_4.15\engine\source\runtime\core\public\Templates/SharedPointer.h(535): note: see declaration of 'TSharedPtr'
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptConsole\Private\SJavascriptLog.cpp(154): error C2672: 'TDecl<SMenuAnchor,RequiredArgs::T0RequiredArgs>::Expose': no matching overloaded function found
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptConsole\Private\SJavascriptLog.cpp(154): error C2784: 'TDecl<SMenuAnchor,RequiredArgs::T0RequiredArgs> &TDecl<SMenuAnchor,RequiredArgs::T0RequiredArgs>::Expose(TWeakPtr<OtherType,0> &)': could not deduce template argument for 'TWeakPtr<OtherType,0> &' from 'TSharedPtr'
1>  C:\Program Files\Epic Games\UE_4.15\Engine\Source\Runtime\SlateCore\Public\Widgets/DeclarativeSyntaxSupport.h(1059): note: see declaration of 'TDecl<SMenuAnchor,RequiredArgs::T0RequiredArgs>::Expose'
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptConsole\Private\SJavascriptLog.cpp(154): error C2784: 'TDecl<SMenuAnchor,RequiredArgs::T0RequiredArgs> &TDecl<SMenuAnchor,RequiredArgs::T0RequiredArgs>::Expose(TSharedRef<UserClass,0> &)': could not deduce template argument for 'TSharedRef<UserClass,0> &' from 'TSharedPtr'
1>  C:\Program Files\Epic Games\UE_4.15\Engine\Source\Runtime\SlateCore\Public\Widgets/DeclarativeSyntaxSupport.h(1048): note: see declaration of 'TDecl<SMenuAnchor,RequiredArgs::T0RequiredArgs>::Expose'
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptConsole\Private\SJavascriptLog.cpp(154): error C2784: 'TDecl<SMenuAnchor,RequiredArgs::T0RequiredArgs> &TDecl<SMenuAnchor,RequiredArgs::T0RequiredArgs>::Expose(TSharedPtr<OtherType,0> &)': could not deduce template argument for 'TSharedPtr<OtherType,0> &' from 'TSharedPtr'
1>  C:\Program Files\Epic Games\UE_4.15\Engine\Source\Runtime\SlateCore\Public\Widgets/DeclarativeSyntaxSupport.h(1037): note: see declaration of 'TDecl<SMenuAnchor,RequiredArgs::T0RequiredArgs>::Expose'
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptConsole\Private\SJavascriptLog.cpp(166): error C2653: 'FEditorStyle': is not a class or namespace name
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptConsole\Private\SJavascriptLog.cpp(166): error C3861: 'GetBrush': identifier not found
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptConsole\Private\SJavascriptLog.cpp(167): error C2228: left of '.Padding' must have class/struct/union
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptConsole\Private\SJavascriptLog.cpp(172): error C2065: 'SuggestionListView': undeclared identifier
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptConsole\Private\SJavascriptLog.cpp(187): error C2672: 'TDecl<STextComboBox,RequiredArgs::T0RequiredArgs>::Expose': no matching overloaded function found
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptConsole\Private\SJavascriptLog.cpp(187): error C2784: 'TDecl<STextComboBox,RequiredArgs::T0RequiredArgs> &TDecl<STextComboBox,RequiredArgs::T0RequiredArgs>::Expose(TWeakPtr<OtherType,0> &)': could not deduce template argument for 'TWeakPtr<OtherType,0> &' from 'TSharedPtr'
1>  C:\Program Files\Epic Games\UE_4.15\Engine\Source\Runtime\SlateCore\Public\Widgets/DeclarativeSyntaxSupport.h(1059): note: see declaration of 'TDecl<STextComboBox,RequiredArgs::T0RequiredArgs>::Expose'
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptConsole\Private\SJavascriptLog.cpp(187): error C2784: 'TDecl<STextComboBox,RequiredArgs::T0RequiredArgs> &TDecl<STextComboBox,RequiredArgs::T0RequiredArgs>::Expose(TSharedRef<UserClass,0> &)': could not deduce template argument for 'TSharedRef<UserClass,0> &' from 'TSharedPtr'
1>  C:\Program Files\Epic Games\UE_4.15\Engine\Source\Runtime\SlateCore\Public\Widgets/DeclarativeSyntaxSupport.h(1048): note: see declaration of 'TDecl<STextComboBox,RequiredArgs::T0RequiredArgs>::Expose'
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptConsole\Private\SJavascriptLog.cpp(187): error C2784: 'TDecl<STextComboBox,RequiredArgs::T0RequiredArgs> &TDecl<STextComboBox,RequiredArgs::T0RequiredArgs>::Expose(TSharedPtr<OtherType,0> &)': could not deduce template argument for 'TSharedPtr<OtherType,0> &' from 'TSharedPtr'
1>  C:\Program Files\Epic Games\UE_4.15\Engine\Source\Runtime\SlateCore\Public\Widgets/DeclarativeSyntaxSupport.h(1037): note: see declaration of 'TDecl<STextComboBox,RequiredArgs::T0RequiredArgs>::Expose'
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptConsole\Private\SJavascriptLog.cpp(209): error C2678: binary '->': no operator found which takes a left-hand operand of type 'TSharedPtr' (or there is no acceptable conversion)
1>  c:\program files\epic games\ue_4.15\engine\source\runtime\core\public\Templates/SharedPointer.h(835): note: could be 'ObjectType *TSharedPtr<ObjectType,Mode>::operator ->(void) const'
1>  C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptConsole\Private\SJavascriptLog.cpp(209): note: while trying to match the argument list '(TSharedPtr)'
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptConsole\Private\SJavascriptLog.cpp(209): error C2039: 'SetSelectedItem': is not a member of 'TSharedPtr'
1>  c:\program files\epic games\ue_4.15\engine\source\runtime\core\public\Templates/SharedPointer.h(535): note: see declaration of 'TSharedPtr'
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptConsole\Private\SJavascriptLog.cpp(215): error C2678: binary '->': no operator found which takes a left-hand operand of type 'TSharedPtr' (or there is no acceptable conversion)
1>  c:\program files\epic games\ue_4.15\engine\source\runtime\core\public\Templates/SharedPointer.h(835): note: could be 'ObjectType *TSharedPtr<ObjectType,Mode>::operator ->(void) const'
1>  C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptConsole\Private\SJavascriptLog.cpp(215): note: while trying to match the argument list '(TSharedPtr)'
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptConsole\Private\SJavascriptLog.cpp(215): error C2039: 'SetSelectedItem': is not a member of 'TSharedPtr'
1>  c:\program files\epic games\ue_4.15\engine\source\runtime\core\public\Templates/SharedPointer.h(535): note: see declaration of 'TSharedPtr'
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptConsole\Private\SJavascriptLog.cpp(248): error C2678: binary '->': no operator found which takes a left-hand operand of type 'TSharedPtr' (or there is no acceptable conversion)
1>  c:\program files\epic games\ue_4.15\engine\source\runtime\core\public\Templates/SharedPointer.h(835): note: could be 'ObjectType *TSharedPtr<ObjectType,Mode>::operator ->(void) const'
1>  C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptConsole\Private\SJavascriptLog.cpp(248): note: while trying to match the argument list '(TSharedPtr)'
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptConsole\Private\SJavascriptLog.cpp(248): error C2039: 'SetIsOpen': is not a member of 'TSharedPtr'
1>  c:\program files\epic games\ue_4.15\engine\source\runtime\core\public\Templates/SharedPointer.h(535): note: see declaration of 'TSharedPtr'
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptConsole\Private\SJavascriptLog.cpp(286): error C2653: 'FEditorStyle': is not a class or namespace name
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptConsole\Private\SJavascriptLog.cpp(286): error C3861: 'Get': identifier not found
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptConsole\Private\SJavascriptLog.cpp(287): error C2228: left of '.HighlightText' must have class/struct/union
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptConsole\Private\SJavascriptLog.cpp(381): error C2678: binary '->': no operator found which takes a left-hand operand of type 'TSharedPtr' (or there is no acceptable conversion)
1>  c:\program files\epic games\ue_4.15\engine\source\runtime\core\public\Templates/SharedPointer.h(835): note: could be 'ObjectType *TSharedPtr<ObjectType,Mode>::operator ->(void) const'
1>  C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptConsole\Private\SJavascriptLog.cpp(381): note: while trying to match the argument list '(TSharedPtr)'
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptConsole\Private\SJavascriptLog.cpp(381): error C2039: 'IsOpen': is not a member of 'TSharedPtr'
1>  c:\program files\epic games\ue_4.15\engine\source\runtime\core\public\Templates/SharedPointer.h(535): note: see declaration of 'TSharedPtr'
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptConsole\Private\SJavascriptLog.cpp(484): error C2678: binary '->': no operator found which takes a left-hand operand of type 'TSharedPtr' (or there is no acceptable conversion)
1>  c:\program files\epic games\ue_4.15\engine\source\runtime\core\public\Templates/SharedPointer.h(835): note: could be 'ObjectType *TSharedPtr<ObjectType,Mode>::operator ->(void) const'
1>  C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptConsole\Private\SJavascriptLog.cpp(484): note: while trying to match the argument list '(TSharedPtr)'
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptConsole\Private\SJavascriptLog.cpp(484): error C2039: 'SetIsOpen': is not a member of 'TSharedPtr'
1>  c:\program files\epic games\ue_4.15\engine\source\runtime\core\public\Templates/SharedPointer.h(535): note: see declaration of 'TSharedPtr'
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptConsole\Private\SJavascriptLog.cpp(485): error C2065: 'SuggestionListView': undeclared identifier
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptConsole\Private\SJavascriptLog.cpp(485): error C2227: left of '->RequestScrollIntoView' must point to class/struct/union/generic type
1>  C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptConsole\Private\SJavascriptLog.cpp(485): note: type is 'unknown-type'
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptConsole\Private\SJavascriptLog.cpp(489): error C2678: binary '->': no operator found which takes a left-hand operand of type 'TSharedPtr' (or there is no acceptable conversion)
1>  c:\program files\epic games\ue_4.15\engine\source\runtime\core\public\Templates/SharedPointer.h(835): note: could be 'ObjectType *TSharedPtr<ObjectType,Mode>::operator ->(void) const'
1>  C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptConsole\Private\SJavascriptLog.cpp(489): note: while trying to match the argument list '(TSharedPtr)'
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptConsole\Private\SJavascriptLog.cpp(489): error C2039: 'SetIsOpen': is not a member of 'TSharedPtr'
1>  c:\program files\epic games\ue_4.15\engine\source\runtime\core\public\Templates/SharedPointer.h(535): note: see declaration of 'TSharedPtr'
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptConsole\Private\SJavascriptLog.cpp(503): error C2065: 'SuggestionListView': undeclared identifier
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptConsole\Private\SJavascriptLog.cpp(503): error C2227: left of '->SetSelection' must point to class/struct/union/generic type
1>  C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptConsole\Private\SJavascriptLog.cpp(503): note: type is 'unknown-type'
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptConsole\Private\SJavascriptLog.cpp(504): error C2065: 'SuggestionListView': undeclared identifier
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptConsole\Private\SJavascriptLog.cpp(504): error C2227: left of '->RequestScrollIntoView' must point to class/struct/union/generic type
1>  C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptConsole\Private\SJavascriptLog.cpp(504): note: type is 'unknown-type'
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptConsole\Private\SJavascriptLog.cpp(510): error C2065: 'SuggestionListView': undeclared identifier
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptConsole\Private\SJavascriptLog.cpp(510): error C2227: left of '->ClearSelection' must point to class/struct/union/generic type
1>  C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptConsole\Private\SJavascriptLog.cpp(510): note: type is 'unknown-type'
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptConsole\Private\SJavascriptLog.cpp(518): error C2678: binary '->': no operator found which takes a left-hand operand of type 'TSharedPtr' (or there is no acceptable conversion)
1>  c:\program files\epic games\ue_4.15\engine\source\runtime\core\public\Templates/SharedPointer.h(835): note: could be 'ObjectType *TSharedPtr<ObjectType,Mode>::operator ->(void) const'
1>  C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptConsole\Private\SJavascriptLog.cpp(518): note: while trying to match the argument list '(TSharedPtr)'
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptConsole\Private\SJavascriptLog.cpp(518): error C2039: 'SetIsOpen': is not a member of 'TSharedPtr'
1>  c:\program files\epic games\ue_4.15\engine\source\runtime\core\public\Templates/SharedPointer.h(535): note: see declaration of 'TSharedPtr'
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptConsole\Private\SJavascriptLog.cpp(620): error C2653: 'FEditorStyle': is not a class or namespace name
1>C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Source\JavascriptConsole\Private\SJavascriptLog.cpp(620): fatal error C1003: error count exceeds 100; stopping compilation
1>ERROR : UBT error : Failed to produce item: C:\Users\Youdaman\Desktop\MyProject\Plugins\UnrealJS\Intermediate\Build\Win64\UE4Editor\Development\UE4Editor-V8.lib
1>  Total build time: 11.90 seconds (Local executor: 0.00 seconds)
1>C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\V140\Microsoft.MakeFile.Targets(41,5): error MSB3075: The command ""C:\Program Files\Epic Games\UE_4.15\Engine\Build\BatchFiles\Build.bat" MyProjectEditor Win64 Development "C:\Users\Youdaman\Desktop\MyProject\MyProject.uproject" -waitmutex" exited with code 5. Please verify that you have sufficient rights to run this command.
========== Build: 0 succeeded, 1 failed, 0 up-to-date, 0 skipped ==========
crocuis commented 7 years ago

@Youdaman fixed. https://github.com/ncsoft/Unreal.js-core/commit/6fbdd8590b7207bfd80d9d04036940747e7fd687

Youdaman commented 7 years ago

Thank you @crocuis that fixed it! 😄