File tree Expand file tree Collapse file tree
src/core/IronPython/Compiler/Ast Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1313 <File Path =" Build.proj" />
1414 <File Path =" CurrentVersion.props" />
1515 <File Path =" Directory.Build.props" />
16- <File Path =" IronPython.ruleset" />
1716 <File Path =" LICENSE" />
1817 <File Path =" make.ps1" />
19- <File Path =" NuGet.config" />
2018 <File Path =" README.md" />
2119 </Folder >
2220 <Folder Name =" /Solution Items/Build/" >
Original file line number Diff line number Diff line change @@ -190,7 +190,7 @@ private class IsInstruction : BinaryInstruction {
190190 public static readonly IsInstruction Instance = new IsInstruction ( ) ;
191191
192192 public override int Run ( InterpretedFrame frame ) {
193- // it’ s okay to pop the args in this order due to commutativity of referential equality
193+ // it' s okay to pop the args in this order due to commutativity of referential equality
194194 frame . Push ( PythonOps . Is ( frame . Pop ( ) , frame . Pop ( ) ) ) ;
195195 return + 1 ;
196196 }
@@ -200,7 +200,7 @@ private class IsNotInstruction : BinaryInstruction {
200200 public static readonly IsNotInstruction Instance = new IsNotInstruction ( ) ;
201201
202202 public override int Run ( InterpretedFrame frame ) {
203- // it’ s okay to pop the args in this order due to commutativity of referential equality
203+ // it' s okay to pop the args in this order due to commutativity of referential equality
204204 frame . Push ( PythonOps . IsNot ( frame . Pop ( ) , frame . Pop ( ) ) ) ;
205205 return + 1 ;
206206 }
Original file line number Diff line number Diff line change 1515 * The only difference between the two is behavior on delete.
1616 * On delete, the name is not assigned to meaningful value (we need to check at runtime if it's initialized),
1717 * but it is not uninitialized either (because delete statement will set it to Uninitialized.instance).
18- * This way, codegen doesn’ t have to emit an explicit initialization for it.
18+ * This way, codegen doesn' t have to emit an explicit initialization for it.
1919 *
2020 * Consider:
2121 *
You can’t perform that action at this time.
0 commit comments