Annotate empty arrays in xplat

Summary: Changelog: [Internal]

Differential Revision: D40410427

fbshipit-source-id: f819fcb00673e19b21aecb383541850436805a0e
This commit is contained in:
Sam Zhou
2022-10-17 12:40:57 -07:00
committed by Facebook GitHub Bot
parent cb2dcd327c
commit a0ee6fae5e
15 changed files with 27 additions and 23 deletions
+1 -1
View File
@@ -16,7 +16,7 @@ import type {HermesParsedStack} from './parseHermesStack';
const parseHermesStack = require('./parseHermesStack');
function convertHermesStack(stack: HermesParsedStack): Array<StackFrame> {
const frames = [];
const frames: Array<StackFrame> = [];
for (const entry of stack.entries) {
if (entry.type !== 'FRAME') {
continue;