Guest User

Untitled

a guest
Apr 22nd, 2022
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 31.57 KB | None | 0 0
  1. [Info - 18:12:36.805] TSServer log file :
  2. /var/folders/74/2ndnt8jn1hqd5vn92zb5cpkr0000gn/T/nvim9s5rw8/coc.nvim-41371/tsserver.log
  3. [Info - 18:12:36.806] using npm from /Users/otavio/.nvm/versions/node/v14.18.1/bin/npm
  4. [Info - 18:12:36.806] Forking TSServer
  5. PATH: /Users/otavio/Projetos/nest-investment-front/node_modules/typescript/lib/tsserver.js
  6. [Info - 18:12:36.809] Starting TSServer
  7. {
  8. "path": "/Users/otavio/Projetos/nest-investment-front/node_modules/typescript/lib",
  9. "_api": {
  10. "versionString": "4.6.3",
  11. "version": "4.6.3"
  12. }
  13. }
  14. [Trace - 18:12:36.810] Sending request: configure (0). Response expected: no. Current queue length: 0
  15. Arguments: {
  16. "hostInfo": "coc-nvim",
  17. "preferences": {
  18. "providePrefixAndSuffixTextForRename": true,
  19. "allowRenameOfImportPath": true,
  20. "includePackageJsonAutoImports": "auto"
  21. }
  22. }
  23. [Trace - 18:12:36.810] Sending request: compilerOptionsForInferredProjects (1). Response expected: no. Current queue length: 0
  24. Arguments: {
  25. "options": {
  26. "module": "commonjs",
  27. "target": "es2016",
  28. "jsx": "preserve",
  29. "allowJs": true,
  30. "allowSyntheticDefaultImports": true,
  31. "allowNonTsExtensions": true
  32. }
  33. }
  34. [Trace - 18:12:36.958] Event received: typingsInstallerPid (0).
  35. Data: {
  36. "pid": 42592
  37. }
  38. [Trace - 18:12:37.73] Sending request: updateOpen (2). Response expected: yes. Current queue length: 0
  39. Arguments: {
  40. "changedFiles": [],
  41. "closedFiles": [],
  42. "openFiles": [
  43. {
  44. "file": "/Users/otavio/Projetos/nest-investment-front/models/PendingWithdrawalToken.ts",
  45. "fileContent": "import { AbiItem } from 'web3-utils'\nimport Contract from './Contract';\nimport PendingWithdrawalTokenJson from '../abi/contracts/PendingWithdrawalToken.json';\nimport BigNumber from 'bignumber.js';\n\ntype WithdrawalTokenReturn = { id: string, withdrawalToken: WithdrawalTokenReturnBase }\ntype WithdrawalTokenReturnBase = { amount: BigNumber, dateMayWithdraw: BigNumber, state: string, tokenType: string }\n\nexport class WithdrawalTokenOption {\n id: string;\n amount: BigNumber\n dateMayWithdraw: BigNumber;\n state: string\n tokenType: string\n\n constructor({ id, withdrawalToken }: WithdrawalTokenReturn) {\n this.id = id;\n this.amount = new BigNumber(withdrawalToken.amount)\n this.dateMayWithdraw = new BigNumber(withdrawalToken.dateMayWithdraw);\n this.state = withdrawalToken.state\n this.tokenType = withdrawalToken.tokenType // 0 = Jr, 1 = Sr\n }\n}\n\nexport default class PendingWithdrawalToken extends Contract {\n static abi: AbiItem[] = PendingWithdrawalTokenJson.abi as AbiItem[];\n\n pendingTokensOf = async (owner: string): Promise<WithdrawalTokenOption[]> =>\n (await this.call(\"pendingTokensOf\", owner) as WithdrawalTokenReturn[]).map(o => new WithdrawalTokenOption(o));\n\n protected constants() { return []; };\n}\n\n",
  46. "projectRootPath": "/Users/otavio/Projetos/nest-investment-front",
  47. "scriptKindName": "TS"
  48. }
  49. ]
  50. }
  51. [Trace - 18:12:37.76] Event received: projectLoadingStart (0).
  52. Data: {
  53. "projectName": "/Users/otavio/Projetos/nest-investment-front/tsconfig.json",
  54. "reason": "Creating possible configured project for /Users/otavio/Projetos/nest-investment-front/models/PendingWithdrawalToken.ts to open"
  55. }
  56. [Trace - 18:12:37.374] TypeScript Server: canceled request with sequence number 3
  57. [Trace - 18:12:38.507] Event received: projectLoadingFinish (0).
  58. Data: {
  59. "projectName": "/Users/otavio/Projetos/nest-investment-front/tsconfig.json"
  60. }
  61. [Trace - 18:12:38.507] Event received: telemetry (0).
  62. Data: {
  63. "telemetryEventName": "projectInfo",
  64. "payload": {
  65. "projectId": "f9de997dcae1e835e0dc06cb755db6c09c3be76cec77ce57b7c455a0a6587e93",
  66. "fileStats": {
  67. "js": 0,
  68. "jsSize": 0,
  69. "jsx": 0,
  70. "jsxSize": 0,
  71. "ts": 20,
  72. "tsSize": 30565,
  73. "tsx": 32,
  74. "tsxSize": 54248,
  75. "dts": 423,
  76. "dtsSize": 4988484,
  77. "deferred": 0,
  78. "deferredSize": 0
  79. },
  80. "compilerOptions": {
  81. "target": "es5",
  82. "lib": [
  83. "dom",
  84. "dom.iterable",
  85. "esnext"
  86. ],
  87. "allowJs": true,
  88. "skipLibCheck": true,
  89. "strict": true,
  90. "forceConsistentCasingInFileNames": true,
  91. "noEmit": true,
  92. "esModuleInterop": true,
  93. "module": "esnext",
  94. "moduleResolution": "node",
  95. "resolveJsonModule": true,
  96. "isolatedModules": true,
  97. "jsx": "preserve",
  98. "incremental": true
  99. },
  100. "typeAcquisition": {
  101. "enable": false,
  102. "include": false,
  103. "exclude": false
  104. },
  105. "extends": false,
  106. "files": false,
  107. "include": true,
  108. "exclude": true,
  109. "compileOnSave": false,
  110. "configFileName": "tsconfig.json",
  111. "projectType": "configured",
  112. "languageServiceEnabled": true,
  113. "version": "4.6.3"
  114. }
  115. }
  116. [Trace - 18:12:38.507] Event received: configFileDiag (0).
  117. Data: {
  118. "triggerFile": "/Users/otavio/Projetos/nest-investment-front/models/PendingWithdrawalToken.ts",
  119. "configFile": "/Users/otavio/Projetos/nest-investment-front/tsconfig.json",
  120. "diagnostics": []
  121. }
  122. [Trace - 18:12:38.507] Response received: updateOpen (2). Request took 1434 ms. Success: true
  123. Result: true
  124. [Trace - 18:12:38.507] Sending request: geterr (4). Response expected: yes. Current queue length: 0
  125. Arguments: {
  126. "delay": 0,
  127. "files": [
  128. "/Users/otavio/Projetos/nest-investment-front/models/PendingWithdrawalToken.ts"
  129. ]
  130. }
  131. [Trace - 18:12:38.509] Event received: syntaxDiag (0).
  132. Data: {
  133. "file": "/Users/otavio/Projetos/nest-investment-front/models/PendingWithdrawalToken.ts",
  134. "diagnostics": []
  135. }
  136. [Trace - 18:12:38.635] Event received: semanticDiag (0).
  137. Data: {
  138. "file": "/Users/otavio/Projetos/nest-investment-front/models/PendingWithdrawalToken.ts",
  139. "diagnostics": []
  140. }
  141. [Trace - 18:12:38.635] Event received: suggestionDiag (0).
  142. Data: {
  143. "file": "/Users/otavio/Projetos/nest-investment-front/models/PendingWithdrawalToken.ts",
  144. "diagnostics": []
  145. }
  146. [Trace - 18:12:38.636] Async response received: requestCompleted (4). Request took 1522 ms.
  147. [Trace - 18:12:40.799] Sending request: updateOpen (5). Response expected: yes. Current queue length: 0
  148. Arguments: {
  149. "changedFiles": [
  150. {
  151. "fileName": "/Users/otavio/Projetos/nest-investment-front/models/PendingWithdrawalToken.ts",
  152. "textChanges": [
  153. {
  154. "newText": " \n\n",
  155. "start": {
  156. "line": 28,
  157. "offset": 1
  158. },
  159. "end": {
  160. "line": 28,
  161. "offset": 1
  162. }
  163. }
  164. ]
  165. }
  166. ],
  167. "closedFiles": [],
  168. "openFiles": []
  169. }
  170. [Trace - 18:12:40.811] Response received: updateOpen (5). Request took 12 ms. Success: true
  171. Result: true
  172. [Trace - 18:12:40.811] Sending request: updateOpen (6). Response expected: yes. Current queue length: 1
  173. Arguments: {
  174. "changedFiles": [
  175. {
  176. "fileName": "/Users/otavio/Projetos/nest-investment-front/models/PendingWithdrawalToken.ts",
  177. "textChanges": [
  178. {
  179. "newText": "p",
  180. "start": {
  181. "line": 28,
  182. "offset": 3
  183. },
  184. "end": {
  185. "line": 28,
  186. "offset": 3
  187. }
  188. }
  189. ]
  190. }
  191. ],
  192. "closedFiles": [],
  193. "openFiles": []
  194. }
  195. [Trace - 18:12:40.812] Response received: updateOpen (6). Request took 1 ms. Success: true
  196. Result: true
  197. [Trace - 18:12:40.813] Sending request: configure (7). Response expected: yes. Current queue length: 0
  198. Arguments: {
  199. "file": "/Users/otavio/Projetos/nest-investment-front/models/PendingWithdrawalToken.ts",
  200. "formatOptions": {
  201. "tabSize": 2,
  202. "indentSize": 2,
  203. "convertTabsToSpaces": true,
  204. "newLineCharacter": "\n",
  205. "insertSpaceAfterCommaDelimiter": true,
  206. "insertSpaceAfterConstructor": false,
  207. "insertSpaceAfterSemicolonInForStatements": true,
  208. "insertSpaceBeforeAndAfterBinaryOperators": true,
  209. "insertSpaceAfterKeywordsInControlFlowStatements": true,
  210. "insertSpaceAfterFunctionKeywordForAnonymousFunctions": true,
  211. "insertSpaceBeforeFunctionParenthesis": false,
  212. "insertSpaceAfterOpeningAndBeforeClosingNonemptyParenthesis": false,
  213. "insertSpaceAfterOpeningAndBeforeClosingNonemptyBrackets": false,
  214. "insertSpaceAfterOpeningAndBeforeClosingEmptyBraces": false,
  215. "insertSpaceAfterOpeningAndBeforeClosingNonemptyBraces": false,
  216. "insertSpaceAfterOpeningAndBeforeClosingTemplateStringBraces": false,
  217. "insertSpaceAfterOpeningAndBeforeClosingJsxExpressionBraces": false,
  218. "insertSpaceAfterTypeAssertion": false,
  219. "placeOpenBraceOnNewLineForFunctions": false,
  220. "placeOpenBraceOnNewLineForControlBlocks": false,
  221. "semicolons": "ignore"
  222. },
  223. "preferences": {
  224. "quotePreference": "auto",
  225. "importModuleSpecifierEnding": "auto",
  226. "jsxAttributeCompletionStyle": "auto",
  227. "allowTextChangesInNewFiles": true,
  228. "allowRenameOfImportPath": true,
  229. "provideRefactorNotApplicableReason": false,
  230. "providePrefixAndSuffixTextForRename": true,
  231. "generateReturnInDocTemplate": true,
  232. "includeCompletionsForImportStatements": true,
  233. "includeCompletionsWithClassMemberSnippets": true,
  234. "includeCompletionsWithSnippetText": true,
  235. "allowIncompleteCompletions": true,
  236. "displayPartsForJSDoc": true,
  237. "includeInlayParameterNameHints": "none",
  238. "includeInlayParameterNameHintsWhenArgumentMatchesName": false,
  239. "includeInlayFunctionParameterTypeHints": false,
  240. "includeInlayVariableTypeHints": false,
  241. "includeInlayPropertyDeclarationTypeHints": false,
  242. "includeInlayFunctionLikeReturnTypeHints": false,
  243. "includeInlayEnumMemberValueHints": false
  244. }
  245. }
  246. [Trace - 18:12:40.813] Response received: configure (7). Request took 2 ms. Success: true
  247. [Trace - 18:12:40.813] Sending request: configure (8). Response expected: yes. Current queue length: 0
  248. Arguments: {
  249. "file": "/Users/otavio/Projetos/nest-investment-front/models/PendingWithdrawalToken.ts",
  250. "formatOptions": {
  251. "tabSize": 2,
  252. "indentSize": 2,
  253. "convertTabsToSpaces": true,
  254. "newLineCharacter": "\n",
  255. "insertSpaceAfterCommaDelimiter": true,
  256. "insertSpaceAfterConstructor": false,
  257. "insertSpaceAfterSemicolonInForStatements": true,
  258. "insertSpaceBeforeAndAfterBinaryOperators": true,
  259. "insertSpaceAfterKeywordsInControlFlowStatements": true,
  260. "insertSpaceAfterFunctionKeywordForAnonymousFunctions": true,
  261. "insertSpaceBeforeFunctionParenthesis": false,
  262. "insertSpaceAfterOpeningAndBeforeClosingNonemptyParenthesis": false,
  263. "insertSpaceAfterOpeningAndBeforeClosingNonemptyBrackets": false,
  264. "insertSpaceAfterOpeningAndBeforeClosingEmptyBraces": false,
  265. "insertSpaceAfterOpeningAndBeforeClosingNonemptyBraces": false,
  266. "insertSpaceAfterOpeningAndBeforeClosingTemplateStringBraces": false,
  267. "insertSpaceAfterOpeningAndBeforeClosingJsxExpressionBraces": false,
  268. "insertSpaceAfterTypeAssertion": false,
  269. "placeOpenBraceOnNewLineForFunctions": false,
  270. "placeOpenBraceOnNewLineForControlBlocks": false,
  271. "semicolons": "ignore"
  272. },
  273. "preferences": {
  274. "quotePreference": "auto",
  275. "importModuleSpecifierEnding": "auto",
  276. "jsxAttributeCompletionStyle": "auto",
  277. "allowTextChangesInNewFiles": true,
  278. "allowRenameOfImportPath": true,
  279. "provideRefactorNotApplicableReason": false,
  280. "providePrefixAndSuffixTextForRename": true,
  281. "generateReturnInDocTemplate": true,
  282. "includeCompletionsForImportStatements": true,
  283. "includeCompletionsWithClassMemberSnippets": true,
  284. "includeCompletionsWithSnippetText": true,
  285. "allowIncompleteCompletions": true,
  286. "displayPartsForJSDoc": true,
  287. "includeInlayParameterNameHints": "none",
  288. "includeInlayParameterNameHintsWhenArgumentMatchesName": false,
  289. "includeInlayFunctionParameterTypeHints": false,
  290. "includeInlayVariableTypeHints": false,
  291. "includeInlayPropertyDeclarationTypeHints": false,
  292. "includeInlayFunctionLikeReturnTypeHints": false,
  293. "includeInlayEnumMemberValueHints": false
  294. }
  295. }
  296. [Trace - 18:12:40.814] Response received: configure (8). Request took 1 ms. Success: true
  297. [Trace - 18:12:40.814] Sending request: completionInfo (9). Response expected: yes. Current queue length: 0
  298. Arguments: {
  299. "file": "/Users/otavio/Projetos/nest-investment-front/models/PendingWithdrawalToken.ts",
  300. "line": 28,
  301. "offset": 4,
  302. "includeExternalModuleExports": true,
  303. "includeInsertTextCompletions": true,
  304. "includeAutomaticOptionalChainCompletions": true
  305. }
  306. [Trace - 18:12:41.18] Response received: completionInfo (9). Request took 204 ms. Success: false . Message: Error processing request. Debug Failure. False expression: Token end is child end
  307. Error: Debug Failure. False expression: Token end is child end
  308. at processChildNode (/Users/otavio/Projetos/nest-investment-front/node_modules/typescript/lib/tsserver.js:144340:38)
  309. at /Users/otavio/Projetos/nest-investment-front/node_modules/typescript/lib/tsserver.js:144280:21
  310. at visitNode (/Users/otavio/Projetos/nest-investment-front/node_modules/typescript/lib/tsserver.js:29849:24)
  311. at Object.forEachChild (/Users/otavio/Projetos/nest-investment-front/node_modules/typescript/lib/tsserver.js:29927:21)
  312. at processNode (/Users/otavio/Projetos/nest-investment-front/node_modules/typescript/lib/tsserver.js:144279:20)
  313. at processChildNode (/Users/otavio/Projetos/nest-investment-front/node_modules/typescript/lib/tsserver.js:144347:21)
  314. at processChildNodes (/Users/otavio/Projetos/nest-investment-front/node_modules/typescript/lib/tsserver.js:144394:48)
  315. at /Users/otavio/Projetos/nest-investment-front/node_modules/typescript/lib/tsserver.js:144282:21
  316. at visitNodes (/Users/otavio/Projetos/nest-investment-front/node_modules/typescript/lib/tsserver.js:29854:24)
  317. at Object.forEachChild (/Users/otavio/Projetos/nest-investment-front/node_modules/typescript/lib/tsserver.js:29994:24)
  318. at processNode (/Users/otavio/Projetos/nest-investment-front/node_modules/typescript/lib/tsserver.js:144279:20)
  319. at processChildNode (/Users/otavio/Projetos/nest-investment-front/node_modules/typescript/lib/tsserver.js:144347:21)
  320. at processChildNodes (/Users/otavio/Projetos/nest-investment-front/node_modules/typescript/lib/tsserver.js:144394:48)
  321. at /Users/otavio/Projetos/nest-investment-front/node_modules/typescript/lib/tsserver.js:144282:21
  322. at visitNodes (/Users/otavio/Projetos/nest-investment-front/node_modules/typescript/lib/tsserver.js:29854:24)
  323. at Object.forEachChild (/Users/otavio/Projetos/nest-investment-front/node_modules/typescript/lib/tsserver.js:30001:24)
  324. at processNode (/Users/otavio/Projetos/nest-investment-front/node_modules/typescript/lib/tsserver.js:144279:20)
  325. at processChildNode (/Users/otavio/Projetos/nest-investment-front/node_modules/typescript/lib/tsserver.js:144347:21)
  326. at /Users/otavio/Projetos/nest-investment-front/node_modules/typescript/lib/tsserver.js:144280:21
  327. at visitNode (/Users/otavio/Projetos/nest-investment-front/node_modules/typescript/lib/tsserver.js:29849:24)
  328. at Object.forEachChild (/Users/otavio/Projetos/nest-investment-front/node_modules/typescript/lib/tsserver.js:29922:21)
  329. at processNode (/Users/otavio/Projetos/nest-investment-front/node_modules/typescript/lib/tsserver.js:144279:20)
  330. at formatSpanWorker (/Users/otavio/Projetos/nest-investment-front/node_modules/typescript/lib/tsserver.js:144080:17)
  331. at /Users/otavio/Projetos/nest-investment-front/node_modules/typescript/lib/tsserver.js:144044:140
  332. at Object.getFormattingScanner (/Users/otavio/Projetos/nest-investment-front/node_modules/typescript/lib/tsserver.js:142671:23)
  333. at Object.formatNodeGivenIndentation (/Users/otavio/Projetos/nest-investment-front/node_modules/typescript/lib/tsserver.js:144044:31)
  334. at /Users/otavio/Projetos/nest-investment-front/node_modules/typescript/lib/tsserver.js:129974:46
  335. at Object.flatMap (/Users/otavio/Projetos/nest-investment-front/node_modules/typescript/lib/tsserver.js:508:25)
  336. at getEntryForMemberCompletion (/Users/otavio/Projetos/nest-investment-front/node_modules/typescript/lib/tsserver.js:129972:38)
  337. at createCompletionEntry (/Users/otavio/Projetos/nest-investment-front/node_modules/typescript/lib/tsserver.js:129792:23)
  338. at getCompletionEntriesFromSymbols (/Users/otavio/Projetos/nest-investment-front/node_modules/typescript/lib/tsserver.js:130156:29)
  339. at completionInfoFromData (/Users/otavio/Projetos/nest-investment-front/node_modules/typescript/lib/tsserver.js:129610:17)
  340. at Object.getCompletionsAtPosition (/Users/otavio/Projetos/nest-investment-front/node_modules/typescript/lib/tsserver.js:129471:36)
  341. at Object.getCompletionsAtPosition (/Users/otavio/Projetos/nest-investment-front/node_modules/typescript/lib/tsserver.js:161872:35)
  342. at IOSession.Session.getCompletions (/Users/otavio/Projetos/nest-investment-front/node_modules/typescript/lib/tsserver.js:173420:64)
  343. at Session.handlers.ts.Map.ts.getEntries._a.<computed> (/Users/otavio/Projetos/nest-investment-front/node_modules/typescript/lib/tsserver.js:172262:61)
  344. at /Users/otavio/Projetos/nest-investment-front/node_modules/typescript/lib/tsserver.js:174069:88
  345. at IOSession.Session.executeWithRequestId (/Users/otavio/Projetos/nest-investment-front/node_modules/typescript/lib/tsserver.js:174060:28)
  346. at IOSession.Session.executeCommand (/Users/otavio/Projetos/nest-investment-front/node_modules/typescript/lib/tsserver.js:174069:33)
  347. at IOSession.Session.onMessage (/Users/otavio/Projetos/nest-investment-front/node_modules/typescript/lib/tsserver.js:174095:35)
  348. at Interface.<anonymous> (/Users/otavio/Projetos/nest-investment-front/node_modules/typescript/lib/tsserver.js:176700:31)
  349. at Interface.emit (events.js:400:28)
  350. at Interface._onLine (readline.js:434:10)
  351. at Interface._normalWrite (readline.js:588:12)
  352. at Socket.ondata (readline.js:246:10)
  353. at Socket.emit (events.js:400:28)
  354. at addChunk (internal/streams/readable.js:293:12)
  355. at readableAddChunk (internal/streams/readable.js:267:9)
  356. at Socket.Readable.push (internal/streams/readable.js:206:10)
  357. at Pipe.onStreamRead (internal/stream_base_commons.js:188:23)
  358. [Trace - 18:12:41.99] Sending request: geterr (10). Response expected: yes. Current queue length: 0
  359. Arguments: {
  360. "delay": 0,
  361. "files": [
  362. "/Users/otavio/Projetos/nest-investment-front/models/PendingWithdrawalToken.ts"
  363. ]
  364. }
  365. [Trace - 18:12:41.100] Event received: syntaxDiag (0).
  366. Data: {
  367. "file": "/Users/otavio/Projetos/nest-investment-front/models/PendingWithdrawalToken.ts",
  368. "diagnostics": []
  369. }
  370. [Trace - 18:12:41.196] Event received: semanticDiag (0).
  371. Data: {
  372. "file": "/Users/otavio/Projetos/nest-investment-front/models/PendingWithdrawalToken.ts",
  373. "diagnostics": [
  374. {
  375. "start": {
  376. "line": 28,
  377. "offset": 3
  378. },
  379. "end": {
  380. "line": 28,
  381. "offset": 4
  382. },
  383. "text": "Member 'p' implicitly has an 'any' type.",
  384. "code": 7008,
  385. "category": "error"
  386. }
  387. ]
  388. }
  389. [Trace - 18:12:41.197] Event received: suggestionDiag (0).
  390. Data: {
  391. "file": "/Users/otavio/Projetos/nest-investment-front/models/PendingWithdrawalToken.ts",
  392. "diagnostics": []
  393. }
  394. [Trace - 18:12:41.197] Async response received: requestCompleted (10). Request took 98 ms.
  395. [Trace - 18:13:45.37] TypeScript Server: trying to cancel ongoing request with sequence number 8
  396. [Trace - 18:13:45.38] TypeScript Server: trying to cancel ongoing request with sequence number 9
  397. [Trace - 18:13:45.344] Sending request: updateOpen (11). Response expected: yes. Current queue length: 0
  398. Arguments: {
  399. "changedFiles": [
  400. {
  401. "fileName": "/Users/otavio/Projetos/nest-investment-front/models/PendingWithdrawalToken.ts",
  402. "textChanges": [
  403. {
  404. "newText": "eq",
  405. "start": {
  406. "line": 28,
  407. "offset": 4
  408. },
  409. "end": {
  410. "line": 28,
  411. "offset": 4
  412. }
  413. }
  414. ]
  415. }
  416. ],
  417. "closedFiles": [],
  418. "openFiles": []
  419. }
  420. [Trace - 18:13:45.353] Response received: updateOpen (11). Request took 9 ms. Success: true
  421. Result: true
  422. [Trace - 18:13:45.353] Sending request: geterr (12). Response expected: yes. Current queue length: 0
  423. Arguments: {
  424. "delay": 0,
  425. "files": [
  426. "/Users/otavio/Projetos/nest-investment-front/models/PendingWithdrawalToken.ts"
  427. ]
  428. }
  429. [Trace - 18:13:45.417] Event received: syntaxDiag (0).
  430. Data: {
  431. "file": "/Users/otavio/Projetos/nest-investment-front/models/PendingWithdrawalToken.ts",
  432. "diagnostics": []
  433. }
  434. [Trace - 18:13:45.522] Event received: semanticDiag (0).
  435. Data: {
  436. "file": "/Users/otavio/Projetos/nest-investment-front/models/PendingWithdrawalToken.ts",
  437. "diagnostics": [
  438. {
  439. "start": {
  440. "line": 28,
  441. "offset": 3
  442. },
  443. "end": {
  444. "line": 28,
  445. "offset": 6
  446. },
  447. "text": "Member 'peq' implicitly has an 'any' type.",
  448. "code": 7008,
  449. "category": "error"
  450. }
  451. ]
  452. }
  453. [Trace - 18:13:45.523] Event received: suggestionDiag (0).
  454. Data: {
  455. "file": "/Users/otavio/Projetos/nest-investment-front/models/PendingWithdrawalToken.ts",
  456. "diagnostics": []
  457. }
  458. [Trace - 18:13:45.523] Async response received: requestCompleted (12). Request took 179 ms.
  459. [Trace - 18:13:46.47] Sending request: updateOpen (13). Response expected: yes. Current queue length: 0
  460. Arguments: {
  461. "changedFiles": [
  462. {
  463. "fileName": "/Users/otavio/Projetos/nest-investment-front/models/PendingWithdrawalToken.ts",
  464. "textChanges": [
  465. {
  466. "newText": ":",
  467. "start": {
  468. "line": 28,
  469. "offset": 6
  470. },
  471. "end": {
  472. "line": 28,
  473. "offset": 6
  474. }
  475. }
  476. ]
  477. }
  478. ],
  479. "closedFiles": [],
  480. "openFiles": []
  481. }
  482. [Trace - 18:13:46.49] Response received: updateOpen (13). Request took 2 ms. Success: true
  483. Result: true
  484. [Trace - 18:13:46.49] Sending request: geterr (14). Response expected: yes. Current queue length: 0
  485. Arguments: {
  486. "delay": 0,
  487. "files": [
  488. "/Users/otavio/Projetos/nest-investment-front/models/PendingWithdrawalToken.ts"
  489. ]
  490. }
  491. [Trace - 18:13:46.77] Event received: syntaxDiag (0).
  492. Data: {
  493. "file": "/Users/otavio/Projetos/nest-investment-front/models/PendingWithdrawalToken.ts",
  494. "diagnostics": []
  495. }
  496. [Trace - 18:13:46.173] Event received: semanticDiag (0).
  497. Data: {
  498. "file": "/Users/otavio/Projetos/nest-investment-front/models/PendingWithdrawalToken.ts",
  499. "diagnostics": [
  500. {
  501. "start": {
  502. "line": 30,
  503. "offset": 3
  504. },
  505. "end": {
  506. "line": 30,
  507. "offset": 18
  508. },
  509. "text": "Cannot find name 'pendingTokensOf'.",
  510. "code": 2304,
  511. "category": "error"
  512. }
  513. ]
  514. }
  515. [Trace - 18:13:46.175] Event received: suggestionDiag (0).
  516. Data: {
  517. "file": "/Users/otavio/Projetos/nest-investment-front/models/PendingWithdrawalToken.ts",
  518. "diagnostics": []
  519. }
  520. [Trace - 18:13:46.175] Async response received: requestCompleted (14). Request took 127 ms.
  521. [Trace - 18:13:46.545] Sending request: updateOpen (15). Response expected: yes. Current queue length: 0
  522. Arguments: {
  523. "changedFiles": [
  524. {
  525. "fileName": "/Users/otavio/Projetos/nest-investment-front/models/PendingWithdrawalToken.ts",
  526. "textChanges": [
  527. {
  528. "newText": "",
  529. "start": {
  530. "line": 28,
  531. "offset": 6
  532. },
  533. "end": {
  534. "line": 28,
  535. "offset": 7
  536. }
  537. }
  538. ]
  539. }
  540. ],
  541. "closedFiles": [],
  542. "openFiles": []
  543. }
  544. [Trace - 18:13:46.546] Response received: updateOpen (15). Request took 1 ms. Success: true
  545. Result: true
  546. [Trace - 18:13:46.546] Sending request: geterr (16). Response expected: yes. Current queue length: 0
  547. Arguments: {
  548. "delay": 0,
  549. "files": [
  550. "/Users/otavio/Projetos/nest-investment-front/models/PendingWithdrawalToken.ts"
  551. ]
  552. }
  553. [Trace - 18:13:46.565] Event received: syntaxDiag (0).
  554. Data: {
  555. "file": "/Users/otavio/Projetos/nest-investment-front/models/PendingWithdrawalToken.ts",
  556. "diagnostics": []
  557. }
  558. [Trace - 18:13:46.665] Event received: semanticDiag (0).
  559. Data: {
  560. "file": "/Users/otavio/Projetos/nest-investment-front/models/PendingWithdrawalToken.ts",
  561. "diagnostics": [
  562. {
  563. "start": {
  564. "line": 28,
  565. "offset": 3
  566. },
  567. "end": {
  568. "line": 28,
  569. "offset": 6
  570. },
  571. "text": "Member 'peq' implicitly has an 'any' type.",
  572. "code": 7008,
  573. "category": "error"
  574. }
  575. ]
  576. }
  577. [Trace - 18:13:46.665] Event received: suggestionDiag (0).
  578. Data: {
  579. "file": "/Users/otavio/Projetos/nest-investment-front/models/PendingWithdrawalToken.ts",
  580. "diagnostics": []
  581. }
  582. [Trace - 18:13:46.665] Async response received: requestCompleted (16). Request took 120 ms.
  583. [Trace - 18:14:03.834] Sending request: documentHighlights (17). Response expected: yes. Current queue length: 0
  584. Arguments: {
  585. "file": "/Users/otavio/Projetos/nest-investment-front/models/PendingWithdrawalToken.ts",
  586. "line": 28,
  587. "offset": 5,
  588. "filesToSearch": [
  589. "/Users/otavio/Projetos/nest-investment-front/models/PendingWithdrawalToken.ts"
  590. ]
  591. }
  592. [Trace - 18:14:03.893] Response received: documentHighlights (17). Request took 59 ms. Success: true
  593. Result: [
  594. {
  595. "file": "/Users/otavio/Projetos/nest-investment-front/models/PendingWithdrawalToken.ts",
  596. "highlightSpans": [
  597. {
  598. "start": {
  599. "line": 28,
  600. "offset": 3
  601. },
  602. "end": {
  603. "line": 28,
  604. "offset": 6
  605. },
  606. "kind": "reference"
  607. }
  608. ]
  609. }
  610. ]
  611. [Trace - 18:14:04.489] TypeScript Server: trying to cancel ongoing request with sequence number 17
  612. [Trace - 18:14:05.467] Sending request: updateOpen (18). Response expected: yes. Current queue length: 0
  613. Arguments: {
  614. "changedFiles": [
  615. {
  616. "fileName": "/Users/otavio/Projetos/nest-investment-front/models/PendingWithdrawalToken.ts",
  617. "textChanges": [
  618. {
  619. "newText": " \n",
  620. "start": {
  621. "line": 29,
  622. "offset": 1
  623. },
  624. "end": {
  625. "line": 29,
  626. "offset": 1
  627. }
  628. }
  629. ]
  630. }
  631. ],
  632. "closedFiles": [],
  633. "openFiles": []
  634. }
  635. [Trace - 18:14:05.470] Response received: updateOpen (18). Request took 3 ms. Success: true
  636. Result: true
  637. [Trace - 18:14:05.470] Sending request: geterr (19). Response expected: yes. Current queue length: 0
  638. Arguments: {
  639. "delay": 0,
  640. "files": [
  641. "/Users/otavio/Projetos/nest-investment-front/models/PendingWithdrawalToken.ts"
  642. ]
  643. }
  644. [Trace - 18:14:05.510] Event received: syntaxDiag (0).
  645. Data: {
  646. "file": "/Users/otavio/Projetos/nest-investment-front/models/PendingWithdrawalToken.ts",
  647. "diagnostics": []
  648. }
  649. [Trace - 18:14:05.616] Event received: semanticDiag (0).
  650. Data: {
  651. "file": "/Users/otavio/Projetos/nest-investment-front/models/PendingWithdrawalToken.ts",
  652. "diagnostics": [
  653. {
  654. "start": {
  655. "line": 28,
  656. "offset": 3
  657. },
  658. "end": {
  659. "line": 28,
  660. "offset": 6
  661. },
  662. "text": "Member 'peq' implicitly has an 'any' type.",
  663. "code": 7008,
  664. "category": "error"
  665. }
  666. ]
  667. }
  668. [Trace - 18:14:05.621] Event received: suggestionDiag (0).
  669. Data: {
  670. "file": "/Users/otavio/Projetos/nest-investment-front/models/PendingWithdrawalToken.ts",
  671. "diagnostics": []
  672. }
  673. [Trace - 18:14:05.621] Async response received: requestCompleted (19). Request took 154 ms.
  674. [Trace - 18:14:55.243] Sending request: updateOpen (20). Response expected: yes. Current queue length: 0
  675. Arguments: {
  676. "changedFiles": [
  677. {
  678. "fileName": "/Users/otavio/Projetos/nest-investment-front/models/PendingWithdrawalToken.ts",
  679. "textChanges": [
  680. {
  681. "newText": ":",
  682. "start": {
  683. "line": 29,
  684. "offset": 3
  685. },
  686. "end": {
  687. "line": 29,
  688. "offset": 3
  689. }
  690. }
  691. ]
  692. }
  693. ],
  694. "closedFiles": [],
  695. "openFiles": []
  696. }
  697. [Trace - 18:14:55.249] Response received: updateOpen (20). Request took 8 ms. Success: true
  698. Result: true
  699. [Trace - 18:14:55.249] Sending request: geterr (21). Response expected: yes. Current queue length: 0
  700. Arguments: {
  701. "delay": 0,
  702. "files": [
  703. "/Users/otavio/Projetos/nest-investment-front/models/PendingWithdrawalToken.ts"
  704. ]
  705. }
  706. [Trace - 18:14:55.292] Event received: syntaxDiag (0).
  707. Data: {
  708. "file": "/Users/otavio/Projetos/nest-investment-front/models/PendingWithdrawalToken.ts",
  709. "diagnostics": []
  710. }
  711. [Trace - 18:14:55.408] Event received: semanticDiag (0).
  712. Data: {
  713. "file": "/Users/otavio/Projetos/nest-investment-front/models/PendingWithdrawalToken.ts",
  714. "diagnostics": [
  715. {
  716. "start": {
  717. "line": 31,
  718. "offset": 3
  719. },
  720. "end": {
  721. "line": 31,
  722. "offset": 18
  723. },
  724. "text": "Cannot find name 'pendingTokensOf'.",
  725. "code": 2304,
  726. "category": "error"
  727. }
  728. ]
  729. }
  730. [Trace - 18:14:55.409] Event received: suggestionDiag (0).
  731. Data: {
  732. "file": "/Users/otavio/Projetos/nest-investment-front/models/PendingWithdrawalToken.ts",
  733. "diagnostics": []
  734. }
  735. [Trace - 18:14:55.410] Async response received: requestCompleted (21). Request took 167 ms.
  736.  
  737.  
Advertisement
Add Comment
Please, Sign In to add comment