如何在内置nodejs函数中添加断点?

时间:2016-11-01 18:26:46

标签: javascript node.js promise es6-promise

这一定是一个非常天真的问题。

我想更好地了解节点。我试图看看如何调用buildin函数。我可能还想对buildin函数做一些小修改(可能只是添加一个<Style x:Key="MyCustomStyle" TargetType="{x:Type TabControl}"> <Style.Resources> <local:TabItemHeaderConverter x:Key="TabItemHeaderConverter" /> <Style TargetType="{x:Type TabItem}"> <Setter Property="Padding" Value="10"/> <Setter Property="Width" Value="120"/> <Setter Property="ContentTemplate"> <Setter.Value> <DataTemplate> <StackPanel Margin="10"> <Label FontSize="20" > <Label.Content> <MultiBinding Converter="{StaticResource TabItemHeaderConverter}"> <Binding RelativeSource="{RelativeSource AncestorType=TabControl}" /> <Binding Path="." /> </MultiBinding> </Label.Content> </Label> <Separator /> <ContentControl Content="{Binding}" /> </StackPanel> </DataTemplate> </Setter.Value> </Setter> </Style> </Style.Resources> <Setter Property="TabStripPlacement" Value="Left"/> </Style> 语句)

假设我只有以下行代码,我想看看如何调用Promise的构造函数。如何在源文件中设置断点? (我在console.log中添加了许多断点,但似乎没有命中行。)我使用vscode作为IDE。

node_modules/core-js/es6/promise.js

谢谢!

0 个答案:

没有答案