Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Intellisense VS Code in React Project Not Working #36254

Closed
rezahabibi96 opened this issue Jan 17, 2020 · 4 comments
Closed

Intellisense VS Code in React Project Not Working #36254

rezahabibi96 opened this issue Jan 17, 2020 · 4 comments
Labels
Needs More Info The issue still hasn't been fully clarified

Comments

@rezahabibi96
Copy link

TypeScript Version: 3.7.x-dev.201xxxxx

I have my VS code intellisense stop working suddenly in my react project. After restarted VS code, it works again, but only in a short amount of time. Whenever I hit enter, the intellisense won't work anymore.

Tried CTRL+SPACE but only loading pop up I'd got and even I got no error/lint not works. Strangely it works in the other (not react) project properly.

I have tried reset setting, restart ts server, add jsconfig, install @types/node or @types/react, disable every extension, uninstall all the extensions, re-install VS code, but nothing works.

@RyanCavanaugh RyanCavanaugh added the Needs More Info The issue still hasn't been fully clarified label Feb 6, 2020
@RyanCavanaugh
Copy link
Member

We'd need some way to reproduce the issue in order to investigate further

@rezahabibi96
Copy link
Author

This is from the ts output:

Result: {
    "text": "\"js\"",
    "kind": "module",
    "kindModifiers": "",
    "spans": [
        {
            "start": {
                "line": 1,
                "offset": 1
            },
            "end": {
                "line": 18,
                "offset": 4
            }
        }
    ],
    "childItems": [
        {
            "text": "App",
            "kind": "class",
            "kindModifiers": "",
            "spans": [
                {
                    "start": {
                        "line": 3,
                        "offset": 1
                    },
                    "end": {
                        "line": 18,
                        "offset": 2
                    }
                }
            ],
            "nameSpan": {
                "start": {
                    "line": 3,
                    "offset": 7
                },
                "end": {
                    "line": 3,
                    "offset": 10
                }
            },
            "childItems": [
                {
                    "text": "constructor",
                    "kind": "constructor",
                    "kindModifiers": "",
                    "spans": [
                        {
                            "start": {
                                "line": 4,
                                "offset": 3
                            },
                            "end": {
                                "line": 6,
                                "offset": 4
                            }
                        }
                    ]
                },
                {
                    "text": "ComponentDidUpdate",
                    "kind": "property",
                    "kindModifiers": "",
                    "spans": [
                        {
                            "start": {
                                "line": 8,
                                "offset": 3
                            },
                            "end": {
                                "line": 8,
                                "offset": 21
                            }
                        }
                    ],
                    "nameSpan": {
                        "start": {
                            "line": 8,
                            "offset": 3
                        },
                        "end": {
                            "line": 8,
                            "offset": 21
                        }
                    }
                },
                {
                    "text": "method",
                    "kind": "method",
                    "kindModifiers": "",
                    "spans": [
                        {
                            "start": {
                                "line": 9,
                                "offset": 3
                            },
                            "end": {
                                "line": 12,
                                "offset": 4
                            }
                        }
                    ],
                    "nameSpan": {
                        "start": {
                            "line": 9,
                            "offset": 3
                        },
                        "end": {
                            "line": 9,
                            "offset": 9
                        }
                    },
                    "childItems": [
                        {
                            "text": "arr",
                            "kind": "const",
                            "kindModifiers": "",
                            "spans": [
                                {
                                    "start": {
                                        "line": 10,
                                        "offset": 11
                                    },
                                    "end": {
                                        "line": 10,
                                        "offset": 19
                                    }
                                }
                            ],
                            "nameSpan": {
                                "start": {
                                    "line": 10,
                                    "offset": 11
                                },
                                "end": {
                                    "line": 10,
                                    "offset": 14
                                }
                            }
                        }
                    ]
                },
                {
                    "text": "render",
                    "kind": "method",
                    "kindModifiers": "",
                    "spans": [
                        {
                            "start": {
                                "line": 14,
                                "offset": 3
                            },
                            "end": {
                                "line": 17,
                                "offset": 4
                            }
                        }
                    ],
                    "nameSpan": {
                        "start": {
                            "line": 14,
                            "offset": 3
                        },
                        "end": {
                            "line": 14,
                            "offset": 9
                        }
                    },
                    "childItems": [
                        {
                            "text": "arr",
                            "kind": "const",
                            "kindModifiers": "",
                            "spans": [
                                {
                                    "start": {
                                        "line": 15,
                                        "offset": 11
                                    },
                                    "end": {
                                        "line": 15,
                                        "offset": 30
                                    }
                                }
                            ],
                            "nameSpan": {
                                "start": {
                                    "line": 15,
                                    "offset": 11
                                },
                                "end": {
                                    "line": 15,
                                    "offset": 14
                                }
                            }
                        }
                    ]
                }
            ]
        },
        {
            "text": "React",
            "kind": "alias",
            "kindModifiers": "",
            "spans": [
                {
                    "start": {
                        "line": 1,
                        "offset": 8
                    },
                    "end": {
                        "line": 1,
                        "offset": 13
                    }
                }
            ],
            "nameSpan": {
                "start": {
                    "line": 1,
                    "offset": 8
                },
                "end": {
                    "line": 1,
                    "offset": 13
                }
            }
        }
    ]
}
[Trace  - 01:25:27.757] <semantic> Canceled request with sequence number 910
[Trace  - 01:25:37.618] <semantic> Canceled request with sequence number 946
[Trace  - 01:25:50.297] <semantic> Canceled request with sequence number 947
[Trace  - 01:26:19.5] <semantic> Canceled request with sequence number 949

@rezahabibi96
Copy link
Author

This is from the tsserver.log file:

Info 4971 [8:23:41.817] -----------------------------------------------
Info 4971 [8:23:41.817] Open files: 
Info 4971 [8:23:41.818] 	FileName: e:/react-contact-keeper/src/js.js ProjectRootPath: e:/react-contact-keeper
Info 4971 [8:23:41.818] 		Projects: /dev/null/inferredProject1*
Info 4971 [8:23:41.818] Structure after ensureProjectForOpenFiles:
Info 4972 [8:23:41.818] Project '/dev/null/inferredProject1*' (Inferred) 0
Info 4972 [8:23:41.818] 	Files (177)
	c:/Users/MOCH.REZA HABIBI/AppData/Local/Programs/Microsoft VS Code/resources/app/extensions/node_modules/typescript/lib/lib.es5.d.ts
	c:/Users/MOCH.REZA HABIBI/AppData/Local/Programs/Microsoft VS Code/resources/app/extensions/node_modules/typescript/lib/lib.es2015.d.ts
	c:/Users/MOCH.REZA HABIBI/AppData/Local/Programs/Microsoft VS Code/resources/app/extensions/node_modules/typescript/lib/lib.es2016.d.ts
	c:/Users/MOCH.REZA HABIBI/AppData/Local/Programs/Microsoft VS Code/resources/app/extensions/node_modules/typescript/lib/lib.es2017.d.ts
	c:/Users/MOCH.REZA HABIBI/AppData/Local/Programs/Microsoft VS Code/resources/app/extensions/node_modules/typescript/lib/lib.es2018.d.ts
	c:/Users/MOCH.REZA HABIBI/AppData/Local/Programs/Microsoft VS Code/resources/app/extensions/node_modules/typescript/lib/lib.dom.d.ts
	c:/Users/MOCH.REZA HABIBI/AppData/Local/Programs/Microsoft VS Code/resources/app/extensions/node_modules/typescript/lib/lib.dom.iterable.d.ts
	c:/Users/MOCH.REZA HABIBI/AppData/Local/Programs/Microsoft VS Code/resources/app/extensions/node_modules/typescript/lib/lib.webworker.importscripts.d.ts
	c:/Users/MOCH.REZA HABIBI/AppData/Local/Programs/Microsoft VS Code/resources/app/extensions/node_modules/typescript/lib/lib.scripthost.d.ts
	c:/Users/MOCH.REZA HABIBI/AppData/Local/Programs/Microsoft VS Code/resources/app/extensions/node_modules/typescript/lib/lib.es2015.core.d.ts
	c:/Users/MOCH.REZA HABIBI/AppData/Local/Programs/Microsoft VS Code/resources/app/extensions/node_modules/typescript/lib/lib.es2015.collection.d.ts
	c:/Users/MOCH.REZA HABIBI/AppData/Local/Programs/Microsoft VS Code/resources/app/extensions/node_modules/typescript/lib/lib.es2015.generator.d.ts
	c:/Users/MOCH.REZA HABIBI/AppData/Local/Programs/Microsoft VS Code/resources/app/extensions/node_modules/typescript/lib/lib.es2015.iterable.d.ts
	c:/Users/MOCH.REZA HABIBI/AppData/Local/Programs/Microsoft VS Code/resources/app/extensions/node_modules/typescript/lib/lib.es2015.promise.d.ts
	c:/Users/MOCH.REZA HABIBI/AppData/Local/Programs/Microsoft VS Code/resources/app/extensions/node_modules/typescript/lib/lib.es2015.proxy.d.ts
	c:/Users/MOCH.REZA HABIBI/AppData/Local/Programs/Microsoft VS Code/resources/app/extensions/node_modules/typescript/lib/lib.es2015.reflect.d.ts
	c:/Users/MOCH.REZA HABIBI/AppData/Local/Programs/Microsoft VS Code/resources/app/extensions/node_modules/typescript/lib/lib.es2015.symbol.d.ts
	c:/Users/MOCH.REZA HABIBI/AppData/Local/Programs/Microsoft VS Code/resources/app/extensions/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts
	c:/Users/MOCH.REZA HABIBI/AppData/Local/Programs/Microsoft VS Code/resources/app/extensions/node_modules/typescript/lib/lib.es2016.array.include.d.ts
	c:/Users/MOCH.REZA HABIBI/AppData/Local/Programs/Microsoft VS Code/resources/app/extensions/node_modules/typescript/lib/lib.es2017.object.d.ts
	c:/Users/MOCH.REZA HABIBI/AppData/Local/Programs/Microsoft VS Code/resources/app/extensions/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts
	c:/Users/MOCH.REZA HABIBI/AppData/Local/Programs/Microsoft VS Code/resources/app/extensions/node_modules/typescript/lib/lib.es2017.string.d.ts
	c:/Users/MOCH.REZA HABIBI/AppData/Local/Programs/Microsoft VS Code/resources/app/extensions/node_modules/typescript/lib/lib.es2017.intl.d.ts
	c:/Users/MOCH.REZA HABIBI/AppData/Local/Programs/Microsoft VS Code/resources/app/extensions/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts
	c:/Users/MOCH.REZA HABIBI/AppData/Local/Programs/Microsoft VS Code/resources/app/extensions/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts
	c:/Users/MOCH.REZA HABIBI/AppData/Local/Programs/Microsoft VS Code/resources/app/extensions/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts
	c:/Users/MOCH.REZA HABIBI/AppData/Local/Programs/Microsoft VS Code/resources/app/extensions/node_modules/typescript/lib/lib.es2018.intl.d.ts
	c:/Users/MOCH.REZA HABIBI/AppData/Local/Programs/Microsoft VS Code/resources/app/extensions/node_modules/typescript/lib/lib.es2018.promise.d.ts
	c:/Users/MOCH.REZA HABIBI/AppData/Local/Programs/Microsoft VS Code/resources/app/extensions/node_modules/typescript/lib/lib.es2018.regexp.d.ts
	c:/Users/MOCH.REZA HABIBI/AppData/Local/Programs/Microsoft VS Code/resources/app/extensions/node_modules/typescript/lib/lib.esnext.intl.d.ts
	c:/Users/MOCH.REZA HABIBI/AppData/Local/Programs/Microsoft VS Code/resources/app/extensions/node_modules/typescript/lib/lib.esnext.bigint.d.ts
	c:/Users/MOCH.REZA HABIBI/AppData/Local/Programs/Microsoft VS Code/resources/app/extensions/node_modules/typescript/lib/lib.es2016.full.d.ts
	e:/react-contact-keeper/node_modules/@types/react/global.d.ts
	e:/react-contact-keeper/node_modules/csstype/index.d.ts
	e:/react-contact-keeper/node_modules/@types/prop-types/index.d.ts
	e:/react-contact-keeper/node_modules/@types/react/index.d.ts
	e:/react-contact-keeper/src/js.js
	C:/Users/MOCH.REZA HABIBI/AppData/Local/Microsoft/TypeScript/3.7/node_modules/@types/async/index.d.ts
	C:/Users/MOCH.REZA HABIBI/AppData/Local/Microsoft/TypeScript/3.7/node_modules/@types/atob/index.d.ts
	C:/Users/MOCH.REZA HABIBI/AppData/Local/Microsoft/TypeScript/3.7/node_modules/@types/object-hash/index.d.ts
	C:/Users/MOCH.REZA HABIBI/AppData/Local/Microsoft/TypeScript/3.7/node_modules/@types/object-path/index.d.ts
	C:/Users/MOCH.REZA HABIBI/AppData/Local/Microsoft/TypeScript/3.7/node_modules/@types/react/global.d.ts
	C:/Users/MOCH.REZA HABIBI/AppData/Local/Microsoft/TypeScript/3.7/node_modules/csstype/index.d.ts
	C:/Users/MOCH.REZA HABIBI/AppData/Local/Microsoft/TypeScript/3.7/node_modules/@types/prop-types/index.d.ts
	C:/Users/MOCH.REZA HABIBI/AppData/Local/Microsoft/TypeScript/3.7/node_modules/@types/react/index.d.ts
	C:/Users/MOCH.REZA HABIBI/AppData/Local/Microsoft/TypeScript/3.7/node_modules/@types/react-dom/index.d.ts
	C:/Users/MOCH.REZA HABIBI/AppData/Local/Microsoft/TypeScript/3.7/node_modules/@types/sprintf/index.d.ts
	e:/react-contact-keeper/node_modules/@types/node/globals.d.ts
	e:/react-contact-keeper/node_modules/@types/node/assert.d.ts
	e:/react-contact-keeper/node_modules/@types/node/async_hooks.d.ts
	e:/react-contact-keeper/node_modules/@types/node/buffer.d.ts
	e:/react-contact-keeper/node_modules/@types/events/index.d.ts
	C:/Users/MOCH.REZA HABIBI/AppData/Local/Microsoft/TypeScript/3.7/node_modules/@types/node/globals.d.ts
	C:/Users/MOCH.REZA HABIBI/AppData/Local/Microsoft/TypeScript/3.7/node_modules/@types/node/assert.d.ts
	C:/Users/MOCH.REZA HABIBI/AppData/Local/Microsoft/TypeScript/3.7/node_modules/@types/node/async_hooks.d.ts
	C:/Users/MOCH.REZA HABIBI/AppData/Local/Microsoft/TypeScript/3.7/node_modules/@types/node/buffer.d.ts
	C:/Users/MOCH.REZA HABIBI/AppData/Local/Microsoft/TypeScript/3.7/node_modules/@types/node/child_process.d.ts
	C:/Users/MOCH.REZA HABIBI/AppData/Local/Microsoft/TypeScript/3.7/node_modules/@types/node/cluster.d.ts
	C:/Users/MOCH.REZA HABIBI/AppData/Local/Microsoft/TypeScript/3.7/node_modules/@types/node/console.d.ts
	C:/Users/MOCH.REZA HABIBI/AppData/Local/Microsoft/TypeScript/3.7/node_modules/@types/node/constants.d.ts
	C:/Users/MOCH.REZA HABIBI/AppData/Local/Microsoft/TypeScript/3.7/node_modules/@types/node/crypto.d.ts
	C:/Users/MOCH.REZA HABIBI/AppData/Local/Microsoft/TypeScript/3.7/node_modules/@types/node/dgram.d.ts
	C:/Users/MOCH.REZA HABIBI/AppData/Local/Microsoft/TypeScript/3.7/node_modules/@types/node/dns.d.ts
	C:/Users/MOCH.REZA HABIBI/AppData/Local/Microsoft/TypeScript/3.7/node_modules/@types/node/domain.d.ts
	C:/Users/MOCH.REZA HABIBI/AppData/Local/Microsoft/TypeScript/3.7/node_modules/@types/node/events.d.ts
	C:/Users/MOCH.REZA HABIBI/AppData/Local/Microsoft/TypeScript/3.7/node_modules/@types/node/fs.d.ts
	C:/Users/MOCH.REZA HABIBI/AppData/Local/Microsoft/TypeScript/3.7/node_modules/@types/node/http.d.ts
	C:/Users/MOCH.REZA HABIBI/AppData/Local/Microsoft/TypeScript/3.7/node_modules/@types/node/http2.d.ts
	C:/Users/MOCH.REZA HABIBI/AppData/Local/Microsoft/TypeScript/3.7/node_modules/@types/node/https.d.ts
	C:/Users/MOCH.REZA HABIBI/AppData/Local/Microsoft/TypeScript/3.7/node_modules/@types/node/inspector.d.ts
	C:/Users/MOCH.REZA HABIBI/AppData/Local/Microsoft/TypeScript/3.7/node_modules/@types/node/module.d.ts
	C:/Users/MOCH.REZA HABIBI/AppData/Local/Microsoft/TypeScript/3.7/node_modules/@types/node/net.d.ts
	C:/Users/MOCH.REZA HABIBI/AppData/Local/Microsoft/TypeScript/3.7/node_modules/@types/node/os.d.ts
	C:/Users/MOCH.REZA HABIBI/AppData/Local/Microsoft/TypeScript/3.7/node_modules/@types/node/path.d.ts
	C:/Users/MOCH.REZA HABIBI/AppData/Local/Microsoft/TypeScript/3.7/node_modules/@types/node/perf_hooks.d.ts
	C:/Users/MOCH.REZA HABIBI/AppData/Local/Microsoft/TypeScript/3.7/node_modules/@types/node/process.d.ts
	C:/Users/MOCH.REZA HABIBI/AppData/Local/Microsoft/TypeScript/3.7/node_modules/@types/node/punycode.d.ts
	C:/Users/MOCH.REZA HABIBI/AppData/Local/Microsoft/TypeScript/3.7/node_modules/@types/node/querystring.d.ts
	C:/Users/MOCH.REZA HABIBI/AppData/Local/Microsoft/TypeScript/3.7/node_modules/@types/node/readline.d.ts
	C:/Users/MOCH.REZA HABIBI/AppData/Local/Microsoft/TypeScript/3.7/node_modules/@types/node/repl.d.ts
	C:/Users/MOCH.REZA HABIBI/AppData/Local/Microsoft/TypeScript/3.7/node_modules/@types/node/stream.d.ts
	C:/Users/MOCH.REZA HABIBI/AppData/Local/Microsoft/TypeScript/3.7/node_modules/@types/node/string_decoder.d.ts
	C:/Users/MOCH.REZA HABIBI/AppData/Local/Microsoft/TypeScript/3.7/node_modules/@types/node/timers.d.ts
	C:/Users/MOCH.REZA HABIBI/AppData/Local/Microsoft/TypeScript/3.7/node_modules/@types/node/tls.d.ts
	C:/Users/MOCH.REZA HABIBI/AppData/Local/Microsoft/TypeScript/3.7/node_modules/@types/node/trace_events.d.ts
	C:/Users/MOCH.REZA HABIBI/AppData/Local/Microsoft/TypeScript/3.7/node_modules/@types/node/tty.d.ts
	C:/Users/MOCH.REZA HABIBI/AppData/Local/Microsoft/TypeScript/3.7/node_modules/@types/node/url.d.ts
	C:/Users/MOCH.REZA HABIBI/AppData/Local/Microsoft/TypeScript/3.7/node_modules/@types/node/util.d.ts
	C:/Users/MOCH.REZA HABIBI/AppData/Local/Microsoft/TypeScript/3.7/node_modules/@types/node/v8.d.ts
	C:/Users/MOCH.REZA HABIBI/AppData/Local/Microsoft/TypeScript/3.7/node_modules/@types/node/vm.d.ts
	C:/Users/MOCH.REZA HABIBI/AppData/Local/Microsoft/TypeScript/3.7/node_modules/@types/node/worker_threads.d.ts
	C:/Users/MOCH.REZA HABIBI/AppData/Local/Microsoft/TypeScript/3.7/node_modules/@types/node/zlib.d.ts
	C:/Users/MOCH.REZA HABIBI/AppData/Local/Microsoft/TypeScript/3.7/node_modules/@types/node/base.d.ts
	C:/Users/MOCH.REZA HABIBI/AppData/Local/Microsoft/TypeScript/3.7/node_modules/@types/node/ts3.2/fs.d.ts
	C:/Users/MOCH.REZA HABIBI/AppData/Local/Microsoft/TypeScript/3.7/node_modules/@types/node/ts3.2/util.d.ts
	C:/Users/MOCH.REZA HABIBI/AppData/Local/Microsoft/TypeScript/3.7/node_modules/@types/node/ts3.2/globals.d.ts
	C:/Users/MOCH.REZA HABIBI/AppData/Local/Microsoft/TypeScript/3.7/node_modules/@types/node/ts3.2/index.d.ts
	e:/react-contact-keeper/node_modules/@types/node/child_process.d.ts
	e:/react-contact-keeper/node_modules/@types/node/cluster.d.ts
	e:/react-contact-keeper/node_modules/@types/node/console.d.ts
	e:/react-contact-keeper/node_modules/@types/node/constants.d.ts
	e:/react-contact-keeper/node_modules/@types/node/crypto.d.ts
	e:/react-contact-keeper/node_modules/@types/node/dgram.d.ts
	e:/react-contact-keeper/node_modules/@types/node/dns.d.ts
	e:/react-contact-keeper/node_modules/@types/node/domain.d.ts
	e:/react-contact-keeper/node_modules/@types/node/events.d.ts
	e:/react-contact-keeper/node_modules/@types/node/fs.d.ts
	e:/react-contact-keeper/node_modules/@types/node/http.d.ts
	e:/react-contact-keeper/node_modules/@types/node/http2.d.ts
	e:/react-contact-keeper/node_modules/@types/node/https.d.ts
	e:/react-contact-keeper/node_modules/@types/node/inspector.d.ts
	e:/react-contact-keeper/node_modules/@types/node/module.d.ts
	e:/react-contact-keeper/node_modules/@types/node/net.d.ts
	e:/react-contact-keeper/node_modules/@types/node/os.d.ts
	e:/react-contact-keeper/node_modules/@types/node/path.d.ts
	e:/react-contact-keeper/node_modules/@types/node/perf_hooks.d.ts
	e:/react-contact-keeper/node_modules/@types/node/process.d.ts
	e:/react-contact-keeper/node_modules/@types/node/punycode.d.ts
	e:/react-contact-keeper/node_modules/@types/node/querystring.d.ts
	e:/react-contact-keeper/node_modules/@types/node/readline.d.ts
	e:/react-contact-keeper/node_modules/@types/node/repl.d.ts
	e:/react-contact-keeper/node_modules/@types/node/stream.d.ts
	e:/react-contact-keeper/node_modules/@types/node/string_decoder.d.ts
	e:/react-contact-keeper/node_modules/@types/node/timers.d.ts
	e:/react-contact-keeper/node_modules/@types/node/tls.d.ts
	e:/react-contact-keeper/node_modules/@types/node/trace_events.d.ts
	e:/react-contact-keeper/node_modules/@types/node/tty.d.ts
	e:/react-contact-keeper/node_modules/@types/node/url.d.ts
	e:/react-contact-keeper/node_modules/@types/node/util.d.ts
	e:/react-contact-keeper/node_modules/@types/node/v8.d.ts
	e:/react-contact-keeper/node_modules/@types/node/vm.d.ts
	e:/react-contact-keeper/node_modules/@types/node/worker_threads.d.ts
	e:/react-contact-keeper/node_modules/@types/node/zlib.d.ts
	e:/react-contact-keeper/node_modules/@types/node/base.d.ts
	e:/react-contact-keeper/node_modules/@types/node/ts3.2/fs.d.ts
	e:/react-contact-keeper/node_modules/@types/node/ts3.2/util.d.ts
	e:/react-contact-keeper/node_modules/@types/node/ts3.2/globals.d.ts
	e:/react-contact-keeper/node_modules/@types/node/ts3.2/index.d.ts
	e:/react-contact-keeper/node_modules/@types/react-dom/index.d.ts
	e:/react-contact-keeper/node_modules/react-scripts/lib/react-app.d.ts
	e:/react-contact-keeper/node_modules/@babel/types/lib/index.d.ts
	e:/react-contact-keeper/node_modules/@types/babel__generator/index.d.ts
	e:/react-contact-keeper/node_modules/@types/babel__traverse/index.d.ts
	e:/react-contact-keeper/node_modules/@babel/parser/typings/babel-parser.d.ts
	e:/react-contact-keeper/node_modules/@types/babel__template/index.d.ts
	e:/react-contact-keeper/node_modules/@types/babel__core/index.d.ts
	e:/react-contact-keeper/node_modules/@types/eslint-visitor-keys/index.d.ts
	e:/react-contact-keeper/node_modules/@types/minimatch/index.d.ts
	e:/react-contact-keeper/node_modules/@types/glob/index.d.ts
	e:/react-contact-keeper/node_modules/@types/istanbul-lib-coverage/index.d.ts
	e:/react-contact-keeper/node_modules/@types/istanbul-lib-report/index.d.ts
	e:/react-contact-keeper/node_modules/@types/istanbul-reports/index.d.ts
	e:/react-contact-keeper/node_modules/@types/json-schema/index.d.ts
	e:/react-contact-keeper/node_modules/@types/parse-json/index.d.ts
	e:/react-contact-keeper/node_modules/@types/q/index.d.ts
	e:/react-contact-keeper/node_modules/@types/stack-utils/index.d.ts
	e:/react-contact-keeper/node_modules/@types/testing-library__dom/matches.d.ts
	e:/react-contact-keeper/node_modules/@types/testing-library__dom/query-helpers.d.ts
	e:/react-contact-keeper/node_modules/@types/testing-library__dom/wait-for-element.d.ts
	e:/react-contact-keeper/node_modules/@types/testing-library__dom/queries.d.ts
	e:/react-contact-keeper/node_modules/@types/testing-library__dom/get-queries-for-element.d.ts
	e:/react-contact-keeper/node_modules/@types/testing-library__dom/screen.d.ts
	e:/react-contact-keeper/node_modules/@types/testing-library__dom/wait.d.ts
	e:/react-contact-keeper/node_modules/@types/testing-library__dom/wait-for-dom-change.d.ts
	e:/react-contact-keeper/node_modules/@types/testing-library__dom/wait-for-element-to-be-removed.d.ts
	e:/react-contact-keeper/node_modules/@types/testing-library__dom/get-node-text.d.ts
	e:/react-contact-keeper/node_modules/@types/testing-library__dom/events.d.ts
	e:/react-contact-keeper/node_modules/pretty-format/build/types.d.ts
	e:/react-contact-keeper/node_modules/pretty-format/build/index.d.ts
	e:/react-contact-keeper/node_modules/@types/testing-library__dom/pretty-dom.d.ts
	e:/react-contact-keeper/node_modules/@types/testing-library__dom/role-helpers.d.ts
	e:/react-contact-keeper/node_modules/@types/testing-library__dom/config.d.ts
	e:/react-contact-keeper/node_modules/@types/testing-library__dom/index.d.ts
	e:/react-contact-keeper/node_modules/@types/react-dom/test-utils/index.d.ts
	e:/react-contact-keeper/node_modules/@types/testing-library__react/index.d.ts
	e:/react-contact-keeper/node_modules/@types/yargs-parser/index.d.ts
	e:/react-contact-keeper/node_modules/@types/yargs/index.d.ts

Info 4972 [8:23:41.818] -----------------------------------------------
Info 4972 [8:23:41.818] Open files: 
Info 4972 [8:23:41.818] 	FileName: e:/react-contact-keeper/src/js.js ProjectRootPath: e:/react-contact-keeper
Info 4972 [8:23:41.818] 		Projects: /dev/null/inferredProject1*
Info 4972 [8:23:41.818] got projects updated in background, updating diagnostics for e:/react-contact-keeper/src/js.js
Info 4973 [8:23:41.818] event:
    {"seq":0,"type":"event","event":"projectsUpdatedInBackground","body":{"openFiles":["e:/react-contact-keeper/src/js.js"]}}
Info 4974 [8:23:42.23] request:
    {"seq":821,"type":"request","command":"geterr","arguments":{"delay":0,"files":["e:/react-contact-keeper/src/js.js"]}}
Perf 4975 [8:23:42.24] 821::geterr: async elapsed time (in milliseconds) 0.9740
Info 4976 [8:23:42.25] event:
    {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"e:/react-contact-keeper/src/js.js","diagnostics":[]}}
Info 4977 [8:23:42.102] event:
    {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"e:/react-contact-keeper/src/js.js","diagnostics":[]}}
Info 4978 [8:23:42.306] event:
    {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"e:/react-contact-keeper/src/js.js","diagnostics":[{"start":{"line":2,"offset":7},"end":{"line":2,"offset":10},"text":"'App' is declared but never used.","code":6196,"category":"suggestion","reportsUnnecessary":true}]}}
Info 4979 [8:23:42.306] event:
    {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":821}}
Info 4980 [8:23:50.398] request:
    {"seq":822,"type":"request","command":"getApplicableRefactors","arguments":{"file":"e:/react-contact-keeper/src/js.js","startLine":1,"startOffset":1,"endLine":1,"endOffset":1}}
Perf 4981 [8:23:50.412] 822::getApplicableRefactors: elapsed time (in milliseconds) 13.6053
Info 4982 [8:23:50.412] response:
    {"seq":0,"type":"response","command":"getApplicableRefactors","request_seq":822,"success":true,"body":[]}
Info 4983 [8:23:50.703] request:
    {"seq":823,"type":"request","command":"geterr","arguments":{"delay":0,"files":["e:/react-contact-keeper/src/js.js"]}}
Perf 4984 [8:23:50.704] 823::geterr: async elapsed time (in milliseconds) 1.0477
Info 4985 [8:23:50.705] event:
    {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"e:/react-contact-keeper/src/js.js","diagnostics":[]}}
Info 4986 [8:23:50.706] event:
    {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"e:/react-contact-keeper/src/js.js","diagnostics":[]}}
Info 4987 [8:23:50.708] event:
    {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"e:/react-contact-keeper/src/js.js","diagnostics":[{"start":{"line":2,"offset":7},"end":{"line":2,"offset":10},"text":"'App' is declared but never used.","code":6196,"category":"suggestion","reportsUnnecessary":true}]}}
Info 4988 [8:23:50.708] event:
    {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":823}}
Info 4989 [8:23:52.320] request:
    {"seq":824,"type":"request","command":"quickinfo","arguments":{"file":"e:/react-contact-keeper/src/js.js","line":1,"offset":15}}
Perf 4990 [8:23:52.325] 824::quickinfo: elapsed time (in milliseconds) 4.3492
Info 4991 [8:23:52.325] response:
    {"seq":0,"type":"response","command":"quickinfo","request_seq":824,"success":false,"message":"No content available."}
Info 4992 [8:23:53.114] request:
    {"seq":825,"type":"request","command":"quickinfo","arguments":{"file":"e:/react-contact-keeper/src/js.js","line":2,"offset":26}}
Perf 4993 [8:23:53.147] 825::quickinfo: elapsed time (in milliseconds) 33.5319
Info 4994 [8:23:53.148] response:
    {"seq":0,"type":"response","command":"quickinfo","request_seq":825,"success":true,"body":{"kind":"class","kindModifiers":"declare","start":{"line":2,"offset":25},"end":{"line":2,"offset":34},"displayString":"class React.Component<P = {}, S = {}, SS = any>","documentation":"","tags":[]}}
Info 4995 [8:23:57.573] request:
    {"seq":826,"type":"request","command":"getApplicableRefactors","arguments":{"file":"e:/react-contact-keeper/src/js.js","startLine":2,"startOffset":36,"endLine":2,"endOffset":36}}
Perf 4996 [8:23:57.576] 826::getApplicableRefactors: elapsed time (in milliseconds) 2.8703
Info 4997 [8:23:57.576] response:
    {"seq":0,"type":"response","command":"getApplicableRefactors","request_seq":826,"success":true,"body":[]}
Info 4998 [8:23:58.427] request:
    {"seq":827,"type":"request","command":"updateOpen","arguments":{"changedFiles":[{"fileName":"e:/react-contact-keeper/src/js.js","textChanges":[{"newText":"\r\n    ","start":{"line":2,"offset":36},"end":{"line":2,"offset":36}}]}],"closedFiles":[],"openFiles":[]}}
Perf 4999 [8:23:58.431] 827::updateOpen: elapsed time (in milliseconds) 4.4427
Info 5000 [8:23:58.431] response:
    {"seq":0,"type":"response","command":"updateOpen","request_seq":827,"success":true,"body":true}
Info 5001 [8:23:58.576] request:
    {"seq":828,"type":"request","command":"geterr","arguments":{"delay":0,"files":["e:/react-contact-keeper/src/js.js"]}}
Perf 5002 [8:23:58.577] 828::geterr: async elapsed time (in milliseconds) 1.2965
Info 5003 [8:23:58.577] Starting updateGraphWorker: Project: /dev/null/inferredProject1*
Info 5004 [8:23:58.738] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 210 structureChanged: false Elapsed: 160ms
Info 5005 [8:23:58.738] Different program with same set of files:: oldProgram.structureIsReused:: 2
Info 5006 [8:23:58.740] event:
    {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"e:/react-contact-keeper/src/js.js","diagnostics":[]}}
Info 5007 [8:23:58.791] event:
    {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"e:/react-contact-keeper/src/js.js","diagnostics":[]}}
Info 5008 [8:23:58.850] event:
    {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"e:/react-contact-keeper/src/js.js","diagnostics":[{"start":{"line":2,"offset":7},"end":{"line":2,"offset":10},"text":"'App' is declared but never used.","code":6196,"category":"suggestion","reportsUnnecessary":true}]}}
Info 5009 [8:23:58.850] event:
    {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":828}}
Info 5010 [8:23:59.310] request:
    {"seq":829,"type":"request","command":"updateOpen","arguments":{"changedFiles":[{"fileName":"e:/react-contact-keeper/src/js.js","textChanges":[{"newText":"c","start":{"line":3,"offset":5},"end":{"line":3,"offset":5}}]}],"closedFiles":[],"openFiles":[]}}
Perf 5011 [8:23:59.311] 829::updateOpen: elapsed time (in milliseconds) 1.1247
Info 5012 [8:23:59.311] response:
    {"seq":0,"type":"response","command":"updateOpen","request_seq":829,"success":true,"body":true}
Info 5013 [8:23:59.312] request:
    {"seq":830,"type":"request","command":"completionInfo","arguments":{"file":"e:/react-contact-keeper/src/js.js","line":3,"offset":6,"includeExternalModuleExports":true,"includeInsertTextCompletions":true,"includeAutomaticOptionalChainCompletions":true}}
Info 5014 [8:23:59.315] Starting updateGraphWorker: Project: /dev/null/inferredProject1*
Info 5015 [8:23:59.442] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 211 structureChanged: false Elapsed: 127ms
Info 5016 [8:23:59.442] Different program with same set of files:: oldProgram.structureIsReused:: 2
Info 5017 [8:23:59.458] getCompletionData: Get current token: 0
Info 5018 [8:23:59.459] getCompletionData: Is inside comment: 1
Info 5019 [8:23:59.459] getCompletionData: Get previous token 1: 0
Info 5020 [8:23:59.459] getCompletionData: Get previous token 2: 0
Info 5021 [8:23:59.461] getCompletionsAtPosition: isCompletionListBlocker: 2
Info 5022 [8:23:59.470] getCompletionData: Semantic work: 9
Info 5023 [8:23:59.475] getCompletionsAtPosition: getCompletionEntriesFromSymbols: 2
Perf 5024 [8:23:59.478] 830::completionInfo: elapsed time (in milliseconds) 166.3601
Info 5025 [8:23:59.478] response:
    {"seq":0,"type":"response","command":"completionInfo","request_seq":830,"success":true,"body":{"isGlobalCompletion":false,"isMemberCompletion":true,"isNewIdentifierLocation":true,"entries":[{"name":"App","kind":"warning","kindModifiers":"","sortText":"6"},{"name":"arr","kind":"warning","kindModifiers":"","sortText":"6"},{"name":"async","kind":"keyword","kindModifiers":"","sortText":"4"},{"name":"Component","kind":"warning","kindModifiers":"","sortText":"6"},{"name":"componentDidCatch","kind":"method","kindModifiers":"declare,optional","sortText":"0"},{"name":"componentDidMount","kind":"method","kindModifiers":"declare,optional","sortText":"0"},{"name":"componentDidUpdate","kind":"method","kindModifiers":"declare,optional","sortText":"0"},{"name":"componentWillMount","kind":"method","kindModifiers":"declare,optional","sortText":"0"},{"name":"componentWillReceiveProps","kind":"method","kindModifiers":"declare,optional","sortText":"0"},{"name":"componentWillUnmount","kind":"method","kindModifiers":"declare,optional","sortText":"0"},{"name":"componentWillUpdate","kind":"method","kindModifiers":"declare,optional","sortText":"0"},{"name":"constructor","kind":"keyword","kindModifiers":"","sortText":"4"},{"name":"context","kind":"property","kindModifiers":"declare","sortText":"0"},{"name":"div","kind":"warning","kindModifiers":"","sortText":"6"},{"name":"forceUpdate","kind":"method","kindModifiers":"declare","sortText":"0"},{"name":"get","kind":"keyword","kindModifiers":"","sortText":"4"},{"name":"getSnapshotBeforeUpdate","kind":"method","kindModifiers":"declare,optional","sortText":"0"},{"name":"length","kind":"warning","kindModifiers":"","sortText":"6"},{"name":"method","kind":"warning","kindModifiers":"","sortText":"6"},{"name":"props","kind":"property","kindModifiers":"declare","sortText":"0"},{"name":"React","kind":"warning","kindModifiers":"","sortText":"6"},{"name":"refs","kind":"property","kindModifiers":"declare","sortText":"0"},{"name":"render","kind":"warning","kindModifiers":"","sortText":"6"},{"name":"set","kind":"keyword","kindModifiers":"","sortText":"4"},{"name":"setState","kind":"method","kindModifiers":"declare","sortText":"0"},{"name":"shouldComponentUpdate","kind":"method","kindModifiers":"declare,optional","sortText":"0"},{"name":"state","kind":"property","kindModifiers":"declare","sortText":"0"},{"name":"static","kind":"keyword","kindModifiers":"","sortText":"4"},{"name":"UNSAFE_componentWillMount","kind":"method","kindModifiers":"declare,optional","sortText":"0"},{"name":"UNSAFE_componentWillReceiveProps","kind":"method","kindModifiers":"declare,optional","sortText":"0"},{"name":"UNSAFE_componentWillUpdate","kind":"method","kindModifiers":"declare,optional","sortText":"0"}]}}
Info 5026 [8:23:59.515] request:
    {"seq":831,"type":"request","command":"updateOpen","arguments":{"changedFiles":[{"fileName":"e:/react-contact-keeper/src/js.js","textChanges":[{"newText":"o","start":{"line":3,"offset":6},"end":{"line":3,"offset":6}}]}],"closedFiles":[],"openFiles":[]}}
Perf 5027 [8:23:59.515] 831::updateOpen: elapsed time (in milliseconds) 0.4089
Info 5028 [8:23:59.515] response:
    {"seq":0,"type":"response","command":"updateOpen","request_seq":831,"success":true,"body":true}
Info 5029 [8:23:59.516] request:
    {"seq":832,"type":"request","command":"completionEntryDetails","arguments":{"file":"e:/react-contact-keeper/src/js.js","line":3,"offset":6,"entryNames":["constructor"]}}
Info 5030 [8:23:59.517] Starting updateGraphWorker: Project: /dev/null/inferredProject1*
Info 5031 [8:23:59.591] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 212 structureChanged: false Elapsed: 73ms
Info 5032 [8:23:59.591] Different program with same set of files:: oldProgram.structureIsReused:: 2
Info 5033 [8:23:59.592] getCompletionData: Get current token: 0
Info 5034 [8:23:59.592] getCompletionData: Is inside comment: 0
Info 5035 [8:23:59.592] getCompletionData: Get previous token 1: 0
Info 5036 [8:23:59.592] getCompletionData: Get previous token 2: 0
Info 5037 [8:23:59.593] getCompletionsAtPosition: isCompletionListBlocker: 1
Info 5038 [8:23:59.594] getCompletionData: Semantic work: 1
Perf 5039 [8:23:59.595] 832::completionEntryDetails: elapsed time (in milliseconds) 79.4651
Info 5040 [8:23:59.595] response:
    {"seq":0,"type":"response","command":"completionEntryDetails","request_seq":832,"success":true,"body":[{"name":"constructor","kindModifiers":"","kind":"keyword","displayParts":[{"text":"constructor","kind":"keyword"}]}]}
Info 5041 [8:23:59.802] request:
    {"seq":833,"type":"request","command":"getApplicableRefactors","arguments":{"file":"e:/react-contact-keeper/src/js.js","startLine":3,"startOffset":7,"endLine":3,"endOffset":7}}
Perf 5042 [8:23:59.803] 833::getApplicableRefactors: elapsed time (in milliseconds) 1.3295
Info 5043 [8:23:59.803] response:
    {"seq":0,"type":"response","command":"getApplicableRefactors","request_seq":833,"success":true,"body":[]}
Info 5044 [8:23:59.804] request:
    {"seq":834,"type":"request","command":"geterr","arguments":{"delay":0,"files":["e:/react-contact-keeper/src/js.js"]}}
Perf 5045 [8:23:59.804] 834::geterr: async elapsed time (in milliseconds) 0.5105
Info 5046 [8:23:59.806] event:
    {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"e:/react-contact-keeper/src/js.js","diagnostics":[]}}
Info 5047 [8:23:59.870] event:
    {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"e:/react-contact-keeper/src/js.js","diagnostics":[]}}
Info 5048 [8:23:59.919] event:
    {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"e:/react-contact-keeper/src/js.js","diagnostics":[{"start":{"line":2,"offset":7},"end":{"line":2,"offset":10},"text":"'App' is declared but never used.","code":6196,"category":"suggestion","reportsUnnecessary":true}]}}
Info 5049 [8:23:59.919] event:
    {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":834}}
Info 5050 [8:24:0.218] request:
    {"seq":835,"type":"request","command":"updateOpen","arguments":{"changedFiles":[{"fileName":"e:/react-contact-keeper/src/js.js","textChanges":[{"newText":"n","start":{"line":3,"offset":7},"end":{"line":3,"offset":7}}]}],"closedFiles":[],"openFiles":[]}}
Perf 5051 [8:24:0.219] 835::updateOpen: elapsed time (in milliseconds) 0.7183
Info 5052 [8:24:0.219] response:
    {"seq":0,"type":"response","command":"updateOpen","request_seq":835,"success":true,"body":true}
Info 5053 [8:24:0.366] request:
    {"seq":836,"type":"request","command":"updateOpen","arguments":{"changedFiles":[{"fileName":"e:/react-contact-keeper/src/js.js","textChanges":[{"newText":"s","start":{"line":3,"offset":8},"end":{"line":3,"offset":8}}]}],"closedFiles":[],"openFiles":[]}}
Perf 5054 [8:24:0.368] 836::updateOpen: elapsed time (in milliseconds) 1.1492
Info 5055 [8:24:0.368] response:
    {"seq":0,"type":"response","command":"updateOpen","request_seq":836,"success":true,"body":true}
Info 5056 [8:24:0.417] request:
    {"seq":837,"type":"request","command":"getApplicableRefactors","arguments":{"file":"e:/react-contact-keeper/src/js.js","startLine":3,"startOffset":9,"endLine":3,"endOffset":9}}
Info 5057 [8:24:0.417] Starting updateGraphWorker: Project: /dev/null/inferredProject1*
Info 5058 [8:24:0.505] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 213 structureChanged: false Elapsed: 88ms
Info 5059 [8:24:0.505] Different program with same set of files:: oldProgram.structureIsReused:: 2
Perf 5060 [8:24:0.506] 837::getApplicableRefactors: elapsed time (in milliseconds) 89.9051
Info 5061 [8:24:0.507] response:
    {"seq":0,"type":"response","command":"getApplicableRefactors","request_seq":837,"success":true,"body":[]}
Info 5062 [8:24:0.519] request:
    {"seq":838,"type":"request","command":"geterr","arguments":{"delay":0,"files":["e:/react-contact-keeper/src/js.js"]}}
Perf 5063 [8:24:0.520] 838::geterr: async elapsed time (in milliseconds) 0.7497
Info 5064 [8:24:0.525] event:
    {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"e:/react-contact-keeper/src/js.js","diagnostics":[]}}
Info 5065 [8:24:0.564] event:
    {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"e:/react-contact-keeper/src/js.js","diagnostics":[]}}
Info 5066 [8:24:0.601] event:
    {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"e:/react-contact-keeper/src/js.js","diagnostics":[{"start":{"line":2,"offset":7},"end":{"line":2,"offset":10},"text":"'App' is declared but never used.","code":6196,"category":"suggestion","reportsUnnecessary":true}]}}
Info 5067 [8:24:0.601] event:
    {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":838}}
Info 5068 [8:24:0.824] request:
    {"seq":839,"type":"request","command":"updateOpen","arguments":{"changedFiles":[{"fileName":"e:/react-contact-keeper/src/js.js","textChanges":[{"newText":"constructor","start":{"line":3,"offset":5},"end":{"line":3,"offset":9}}]}],"closedFiles":[],"openFiles":[]}}
Perf 5069 [8:24:0.824] 839::updateOpen: elapsed time (in milliseconds) 0.5560
Info 5070 [8:24:0.825] response:
    {"seq":0,"type":"response","command":"updateOpen","request_seq":839,"success":true,"body":true}
Info 5071 [8:24:0.878] request:
    {"seq":840,"type":"request","command":"getApplicableRefactors","arguments":{"file":"e:/react-contact-keeper/src/js.js","startLine":3,"startOffset":16,"endLine":3,"endOffset":16}}
Info 5072 [8:24:0.878] Starting updateGraphWorker: Project: /dev/null/inferredProject1*
Info 5073 [8:24:0.982] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 214 structureChanged: false Elapsed: 104ms
Info 5074 [8:24:0.982] Different program with same set of files:: oldProgram.structureIsReused:: 2
Perf 5075 [8:24:0.983] 840::getApplicableRefactors: elapsed time (in milliseconds) 105.1491
Info 5076 [8:24:0.983] response:
    {"seq":0,"type":"response","command":"getApplicableRefactors","request_seq":840,"success":true,"body":[]}
Info 5077 [8:24:1.13] request:
    {"seq":841,"type":"request","command":"geterr","arguments":{"delay":0,"files":["e:/react-contact-keeper/src/js.js"]}}
Perf 5078 [8:24:1.14] 841::geterr: async elapsed time (in milliseconds) 0.4136
Info 5079 [8:24:1.20] event:
    {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"e:/react-contact-keeper/src/js.js","diagnostics":[{"start":{"line":4,"offset":3},"end":{"line":4,"offset":9},"text":"'(' expected.","code":1005,"category":"error"}]}}
Info 5080 [8:24:1.56] event:
    {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"e:/react-contact-keeper/src/js.js","diagnostics":[]}}
Info 5081 [8:24:1.103] event:
    {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"e:/react-contact-keeper/src/js.js","diagnostics":[]}}
Info 5082 [8:24:1.104] event:
    {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":841}}
Info 5083 [8:24:1.379] request:
    {"seq":842,"type":"request","command":"updateOpen","arguments":{"changedFiles":[{"fileName":"e:/react-contact-keeper/src/js.js","textChanges":[{"newText":"()","start":{"line":3,"offset":16},"end":{"line":3,"offset":16}}]}],"closedFiles":[],"openFiles":[]}}
Perf 5084 [8:24:1.379] 842::updateOpen: elapsed time (in milliseconds) 0.4665
Info 5085 [8:24:1.379] response:
    {"seq":0,"type":"response","command":"updateOpen","request_seq":842,"success":true,"body":true}
Info 5086 [8:24:1.380] request:
    {"seq":843,"type":"request","command":"signatureHelp","arguments":{"file":"e:/react-contact-keeper/src/js.js","line":3,"offset":17,"triggerReason":{"kind":"characterTyped","triggerCharacter":"("}}}
Info 5087 [8:24:1.382] Starting updateGraphWorker: Project: /dev/null/inferredProject1*
Info 5088 [8:24:1.491] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 215 structureChanged: false Elapsed: 109ms
Info 5089 [8:24:1.491] Different program with same set of files:: oldProgram.structureIsReused:: 2
Perf 5090 [8:24:1.497] 843::signatureHelp: elapsed time (in milliseconds) 116.2145
Info 5091 [8:24:1.497] response:
    {"seq":0,"type":"response","command":"signatureHelp","request_seq":843,"success":false,"message":"No content available."}
Info 5092 [8:24:1.508] request:
    {"seq":844,"type":"request","command":"getApplicableRefactors","arguments":{"file":"e:/react-contact-keeper/src/js.js","startLine":3,"startOffset":17,"endLine":3,"endOffset":17}}
Perf 5093 [8:24:1.509] 844::getApplicableRefactors: elapsed time (in milliseconds) 1.4266
Info 5094 [8:24:1.509] response:
    {"seq":0,"type":"response","command":"getApplicableRefactors","request_seq":844,"success":true,"body":[]}
Info 5095 [8:24:1.597] request:
    {"seq":845,"type":"request","command":"geterr","arguments":{"delay":0,"files":["e:/react-contact-keeper/src/js.js"]}}
Perf 5096 [8:24:1.598] 845::geterr: async elapsed time (in milliseconds) 0.9682
Info 5097 [8:24:1.602] event:
    {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"e:/react-contact-keeper/src/js.js","diagnostics":[]}}
Info 5098 [8:24:1.675] event:
    {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"e:/react-contact-keeper/src/js.js","diagnostics":[]}}
Info 5099 [8:24:1.748] event:
    {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"e:/react-contact-keeper/src/js.js","diagnostics":[{"start":{"line":2,"offset":7},"end":{"line":2,"offset":10},"text":"'App' is declared but never used.","code":6196,"category":"suggestion","reportsUnnecessary":true}]}}
Info 5100 [8:24:1.749] event:
    {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":845}}
Info 5101 [8:24:2.68] request:
    {"seq":846,"type":"request","command":"getApplicableRefactors","arguments":{"file":"e:/react-contact-keeper/src/js.js","startLine":3,"startOffset":17,"endLine":3,"endOffset":17}}
Perf 5102 [8:24:2.69] 846::getApplicableRefactors: elapsed time (in milliseconds) 1.4535
Info 5103 [8:24:2.69] response:
    {"seq":0,"type":"response","command":"getApplicableRefactors","request_seq":846,"success":true,"body":[]}
Info 5104 [8:24:2.699] request:
    {"seq":847,"type":"request","command":"updateOpen","arguments":{"changedFiles":[{"fileName":"e:/react-contact-keeper/src/js.js","textChanges":[{"newText":" ","start":{"line":3,"offset":18},"end":{"line":3,"offset":18}}]}],"closedFiles":[],"openFiles":[]}}
Perf 5105 [8:24:2.700] 847::updateOpen: elapsed time (in milliseconds) 0.9938
Info 5106 [8:24:2.700] response:
    {"seq":0,"type":"response","command":"updateOpen","request_seq":847,"success":true,"body":true}
Info 5107 [8:24:2.945] request:
    {"seq":848,"type":"request","command":"updateOpen","arguments":{"changedFiles":[{"fileName":"e:/react-contact-keeper/src/js.js","textChanges":[{"newText":"{}","start":{"line":3,"offset":19},"end":{"line":3,"offset":19}}]}],"closedFiles":[],"openFiles":[]}}
Perf 5108 [8:24:2.945] 848::updateOpen: elapsed time (in milliseconds) 0.5884
Info 5109 [8:24:2.946] response:
    {"seq":0,"type":"response","command":"updateOpen","request_seq":848,"success":true,"body":true}
Info 5110 [8:24:3.196] request:
    {"seq":849,"type":"request","command":"updateOpen","arguments":{"changedFiles":[{"fileName":"e:/react-contact-keeper/src/js.js","textChanges":[{"newText":"\r\n        \r\n    ","start":{"line":3,"offset":20},"end":{"line":3,"offset":20}}]}],"closedFiles":[],"openFiles":[]}}
Perf 5111 [8:24:3.197] 849::updateOpen: elapsed time (in milliseconds) 0.7210
Info 5112 [8:24:3.197] response:
    {"seq":0,"type":"response","command":"updateOpen","request_seq":849,"success":true,"body":true}
Info 5113 [8:24:3.325] request:
    {"seq":850,"type":"request","command":"geterr","arguments":{"delay":0,"files":["e:/react-contact-keeper/src/js.js"]}}
Perf 5114 [8:24:3.326] 850::geterr: async elapsed time (in milliseconds) 0.9972
Info 5115 [8:24:3.334] Starting updateGraphWorker: Project: /dev/null/inferredProject1*
Info 5116 [8:24:3.417] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 216 structureChanged: false Elapsed: 82ms
Info 5117 [8:24:3.417] Different program with same set of files:: oldProgram.structureIsReused:: 2
Info 5118 [8:24:3.418] event:
    {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"e:/react-contact-keeper/src/js.js","diagnostics":[]}}
Info 5119 [8:24:3.485] event:
    {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"e:/react-contact-keeper/src/js.js","diagnostics":[]}}
Info 5120 [8:24:3.528] event:
    {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"e:/react-contact-keeper/src/js.js","diagnostics":[{"start":{"line":2,"offset":7},"end":{"line":2,"offset":10},"text":"'App' is declared but never used.","code":6196,"category":"suggestion","reportsUnnecessary":true}]}}
Info 5121 [8:24:3.528] event:
    {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":850}}
Info 5122 [8:24:3.891] request:
    {"seq":851,"type":"request","command":"updateOpen","arguments":{"changedFiles":[{"fileName":"e:/react-contact-keeper/src/js.js","textChanges":[{"newText":"s","start":{"line":4,"offset":9},"end":{"line":4,"offset":9}}]}],"closedFiles":[],"openFiles":[]}}
Perf 5123 [8:24:3.892] 851::updateOpen: elapsed time (in milliseconds) 0.5052
Info 5124 [8:24:3.892] response:
    {"seq":0,"type":"response","command":"updateOpen","request_seq":851,"success":true,"body":true}
Info 5125 [8:24:3.894] request:
    {"seq":852,"type":"request","command":"completionInfo","arguments":{"file":"e:/react-contact-keeper/src/js.js","line":4,"offset":10,"includeExternalModuleExports":true,"includeInsertTextCompletions":true,"includeAutomaticOptionalChainCompletions":true}}
Info 5126 [8:24:3.896] Starting updateGraphWorker: Project: /dev/null/inferredProject1*
Info 5127 [8:24:3.986] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 217 structureChanged: false Elapsed: 90ms
Info 5128 [8:24:3.986] Different program with same set of files:: oldProgram.structureIsReused:: 2
Info 5129 [8:24:3.988] getCompletionData: Get current token: 0
Info 5130 [8:24:3.988] getCompletionData: Is inside comment: 0
Info 5131 [8:24:3.988] getCompletionData: Get previous token 1: 0
Info 5132 [8:24:3.988] getCompletionData: Get previous token 2: 0
Info 5133 [8:24:3.988] getCompletionsAtPosition: isCompletionListBlocker: 0
Info 5134 [8:24:4.7] getSymbolsFromOtherSourceFileExports: Recomputing list

@sheetalkamat
Copy link
Member

This should be fixed by #35512

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Needs More Info The issue still hasn't been fully clarified
Projects
None yet
Development

No branches or pull requests

3 participants