Changeset 30192 in webkit for trunk/JavaScriptCore/kjs/interpreter.cpp
- Timestamp:
- Feb 13, 2008, 4:10:00 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kjs/interpreter.cpp
r29810 r30192 1 // -*- c-basic-offset: 2 -*-2 1 /* 3 * This file is part of the KDE libraries4 2 * Copyright (C) 1999-2001 Harri Porten ([email protected]) 5 3 * Copyright (C) 2001 Peter Kelly ([email protected]) … … 53 51 #include <stdio.h> 54 52 #include <wtf/Assertions.h> 53 54 #if !PLATFORM(WIN_OS) 55 #include <unistd.h> 56 #endif 55 57 56 58 namespace KJS { … … 147 149 bool Interpreter::shouldPrintExceptions() 148 150 { 149 return printExceptions;151 return printExceptions; 150 152 } 151 153 152 154 void Interpreter::setShouldPrintExceptions(bool print) 153 155 { 154 printExceptions = print;156 printExceptions = print; 155 157 } 156 158
Note:
See TracChangeset
for help on using the changeset viewer.