Index: tracing/tracing/model/source_info/js_source_info.html |
diff --git a/tracing/tracing/model/source_info/js_source_info.html b/tracing/tracing/model/source_info/js_source_info.html |
index bb4370e2c634f77f41ac817adb0468e8f1391a13..5efb0918443b243e800e64dc1ed67169f7f0901a 100644 |
--- a/tracing/tracing/model/source_info/js_source_info.html |
+++ b/tracing/tracing/model/source_info/js_source_info.html |
@@ -41,14 +41,16 @@ tr.exportTo('tr.model.source_info', function() { |
} |
}; |
+ var JSSourceState = { |
+ COMPILED: 'compiled', |
+ OPTIMIZABLE: 'optimizable', |
+ OPTIMIZED: 'optimized', |
+ UNKNOWN: 'unknown', |
+ }; |
+ |
return { |
- JSSourceInfo: JSSourceInfo, |
- JSSourceState: { |
- COMPILED: 'compiled', |
- OPTIMIZABLE: 'optimizable', |
- OPTIMIZED: 'optimized', |
- UNKNOWN: 'unknown' |
- } |
+ JSSourceInfo, |
+ JSSourceState, |
}; |
}); |
</script> |