Changeset 153148 in webkit for trunk/Source/JavaScriptCore/runtime/JSCellInlines.h
- Timestamp:
- Jul 24, 2013, 8:59:49 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/runtime/JSCellInlines.h
r149236 r153148 1 1 /* 2 * Copyright (C) 2012 Apple Inc. All rights reserved.2 * Copyright (C) 2012, 2013 Apple Inc. All rights reserved. 3 3 * 4 4 * Redistribution and use in source and binary forms, with or without … … 33 33 #include "JSString.h" 34 34 #include "Structure.h" 35 #include <wtf/CompilationThread.h> 35 36 36 37 namespace JSC { … … 38 39 inline JSCell::JSCell(CreatingEarlyCellTag) 39 40 { 41 ASSERT(!isCompilationThread()); 40 42 } 41 43 … … 43 45 : m_structure(vm, this, structure) 44 46 { 47 ASSERT(!isCompilationThread()); 45 48 } 46 49
Note:
See TracChangeset
for help on using the changeset viewer.