mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
Annotate empty arrays in xplat
Summary: Changelog: [Internal] Differential Revision: D40410427 fbshipit-source-id: f819fcb00673e19b21aecb383541850436805a0e
This commit is contained in:
committed by
Facebook GitHub Bot
parent
cb2dcd327c
commit
a0ee6fae5e
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user