X-Git-Url: https://git.saurik.com/apple/javascriptcore.git/blobdiff_plain/14957cd040308e3eeec43d26bae5d76da13fcd85..40a37d088818fc2fbeba2ef850dbcaaf294befbf:/dfg/DFGByteCodeParser.h diff --git a/dfg/DFGByteCodeParser.h b/dfg/DFGByteCodeParser.h index d4efe61..cb86269 100644 --- a/dfg/DFGByteCodeParser.h +++ b/dfg/DFGByteCodeParser.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2011 Apple Inc. All rights reserved. + * Copyright (C) 2011, 2013 Apple Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions @@ -28,18 +28,18 @@ #if ENABLE(DFG_JIT) -#include +#include "DFGGraph.h" namespace JSC { class CodeBlock; -class JSGlobalData; +class VM; namespace DFG { // Populate the Graph with a basic block of code from the CodeBlock, // starting at the provided bytecode index. -bool parse(Graph&, JSGlobalData*, CodeBlock*); +bool parse(Graph&); } } // namespace JSC::DFG