Changeset 129434 in webkit for trunk/Source/JavaScriptCore/offlineasm/parser.rb
- Timestamp:
- Sep 24, 2012, 5:38:51 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/offlineasm/parser.rb
r123147 r129434 104 104 when /\A\n/ 105 105 # We've found a '\n'. Emit the last comment recorded if appropriate: 106 if $enableInstrAnnotations and annotation 106 # We need to parse annotations regardless of whether the backend does 107 # anything with them or not. This is because the C++ backend may make 108 # use of this for its cloopDo debugging utility even if 109 # enableInstrAnnotations is not enabled. 110 if annotation 107 111 result << Annotation.new(CodeOrigin.new(fileName, lineNumber), 108 112 annotationType, annotation)
Note:
See TracChangeset
for help on using the changeset viewer.