X-Git-Url: https://git.saurik.com/cycript.git/blobdiff_plain/c1d3e52e58e86c49f9d04e06ae8e0ece4b98250c..1e8d80477a3e058a30c477955f1e0c56deb6e956:/Location.hpp diff --git a/Location.hpp b/Location.hpp index a53e932..a5c5a67 100644 --- a/Location.hpp +++ b/Location.hpp @@ -1,5 +1,5 @@ -/* Cycript - Optimizing JavaScript Compiler/Runtime - * Copyright (C) 2009-2015 Jay Freeman (saurik) +/* Cycript - The Truly Universal Scripting Language + * Copyright (C) 2009-2016 Jay Freeman (saurik) */ /* GNU Affero General Public License, Version 3 {{{ */ @@ -37,12 +37,12 @@ class CYPosition { { } - void lines(unsigned count = 1) { + void Lines(unsigned count = 1) { column = 0; line += count; } - void columns(unsigned count = 1) { + void Columns(unsigned count = 1) { column += count; } };