API-CHANGES.txt 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996
  1. 0.24.1:
  2. * Deprecate Behavior >> javascriptConstructor(:)
  3. + Behavior >>
  4. + alternateConstructorViaSelector:
  5. + applySuperConstructorOn:withArguments:
  6. + beJavaScriptSubclassOf:
  7. + javaScriptConstructor
  8. + javaScriptConstructor:
  9. + amber/boot api >>
  10. + detachClass(klass)
  11. + amber/helpers exports >>
  12. + $nil
  13. - amber/boot api >>
  14. - addElement(arraySet, el)
  15. - removeElement(arraySet, el)
  16. 0.23.2:
  17. + Platform class >>
  18. + fetch:
  19. + fetchUrl:options:
  20. + BrowserPlatform >>
  21. + fetch:
  22. + fetchUrl:options:
  23. + NodePlatform >>
  24. + fetch:
  25. + fetchUrl:options:
  26. 0.23.1:
  27. + TBehaviorDefaults >>
  28. + includingPossibleMetaDo:
  29. + Class >>
  30. + includingPossibleMetaDo:
  31. + CompiledMethod >>
  32. + origin
  33. - SmalltalkImage >>
  34. - includesKey:
  35. 0.23.0:
  36. * Namespace change: amber_core => amber/core.
  37. * amber/boot api addClass only takes 3 params; 4 param version deprecated
  38. + SmalltalkImage >>
  39. + beClean
  40. + amber/helpers exports >>
  41. + beClean
  42. + amber/boot api >>
  43. + setSlots(klass, arrayOfNames)
  44. 0.22.4:
  45. * Remove class IndexableCollection, trait TKeyValueCollection.
  46. * Merge CharacterArray class into String class
  47. * Deprecate CharacterArray class
  48. * Deprecate Collection >> copyWithAll:, #, is enough.
  49. + amber/helpers exports
  50. + loadPackages
  51. - Array >>
  52. - numericallyIndexable
  53. - Set
  54. - detect:ifNone: (pushed up to Collection)
  55. - SequenceableCollection
  56. - numericallyIndexable
  57. - String >>
  58. - numericallyIndexable
  59. 0.22.1:
  60. + BlockClosure >>
  61. + provided
  62. + Class >>
  63. + provided
  64. 0.22.0:
  65. * Deprecate Exception >> resignal. Should have been #pass.
  66. + Compiler >>
  67. + ast:forClass:protocol:
  68. + cleanCodeGenerator
  69. + codeGenerator
  70. + forClass:protocol:
  71. + Exception
  72. + outer
  73. + pass
  74. + JSObjectProxy >>
  75. + removeKey:
  76. + Number >>
  77. + ln1p
  78. + SmalltalkImage >>
  79. + postLoad
  80. - AmberBootstrapInitialization class >>
  81. - initializeClasses
  82. - ClassBuilder >>
  83. - setupClass:
  84. - Compiler >>
  85. - compileNode:forClass:package:
  86. - ProtoObject
  87. - asJSON
  88. - asJavascript
  89. - SmalltalkImage >>
  90. - packageAt:
  91. - amber/boot api >>
  92. - nextId
  93. 0.21.1:
  94. + ClassBuilder >>
  95. + class:instanceVariables:
  96. + JSObjectProxy class >>
  97. + null
  98. + undefined
  99. - ClassBuilder >>
  100. - basicClass:instanceVariableNames:
  101. 0.21.0:
  102. * Deprecate SmalltalkImage >> existsJsGlobal:
  103. + Number >>
  104. + bitAnd:
  105. + bitNot
  106. + bitOr:
  107. + bitXor:
  108. + printStringBase:
  109. + Platform class >>
  110. + includesGlobal:
  111. 0.20.0:
  112. * Internal kernel fields naming changes.
  113. + amber/boot api >>
  114. + traitsOrClasses
  115. - SmalltalkImage >>
  116. - legacyGlobalJsVariables
  117. - amber/boot >>
  118. - nil
  119. - dnu
  120. - amber/boot api >>
  121. - classes
  122. 0.19.1:
  123. * Deprecate amber/boot api nextId, prop globalJsVariables.
  124. * Deprecate ProtoObject >> identityHash.
  125. * Deprecate SmalltalkImage >> packageAt: in favour of explicit #packageAt:if{Absent,Present}:.
  126. + AmberBootstrapInitialization class >>
  127. + run
  128. + initializeClasses
  129. + organizeClasses
  130. + organizeMethods
  131. + Behavior >>
  132. + basicOrganization
  133. + basicOrganization:
  134. + ClassOrganizer >>
  135. + theClass
  136. + ClassOrganizer class >>
  137. + on:
  138. + Compiler class >>
  139. + eval:
  140. + JavaScriptException >>
  141. + shouldBeStubbed
  142. + wrap
  143. + Message class >>
  144. + selector:arguments:notUnderstoodBy:
  145. + MethodContext >>
  146. + stubHere
  147. + stubToAtMost:
  148. + NonBooleanReceiver class >>
  149. + signalOn:
  150. + Package >>
  151. + evalBlock
  152. + evalBlock:
  153. + Package class >>
  154. + named:javaScriptDescriptor:
  155. + SmalltalkImage >>
  156. + packageDictionary
  157. + packageAt:ifPresent:
  158. + TBehaviorProvider >>
  159. + methodOrganizationEnter:andLeave:
  160. + TMasterBehavior >>
  161. + definedMethods
  162. + enterOrganization
  163. + leaveOrganization
  164. + Trait >>
  165. + basicOrganization
  166. + basicOrganization:
  167. + UndefinedObject >>
  168. + ==
  169. + Number >>
  170. + min:max:
  171. + degreesToRadians
  172. + radiansToDegrees
  173. + arcTan:
  174. + between:and:
  175. + Number class >>
  176. + radiansPerDegree
  177. + Point >>
  178. + dotProduct:
  179. + normal
  180. + angle
  181. + normalized
  182. + r
  183. + corner:
  184. + extent:
  185. + rectangle:
  186. + Rectangle >>
  187. + =
  188. + corner
  189. + origin
  190. + containsPoint:
  191. + containsRect:
  192. + printOn:
  193. + Rectangle class >>
  194. + origin:corner:
  195. + origin:extent:
  196. + point:point:
  197. - Package >>
  198. - basicName:
  199. - basicImports
  200. - ProtoObject >>
  201. - isSameInstanceAs:
  202. - ObjectTest >>
  203. - testIdentityHash
  204. - amber/boot api >>
  205. - reservedWords (with the hope no one uses it directly)
  206. 0.19.0:
  207. * Remove class Thenable, add trait TThenable.
  208. * Behavior / Trait hierarchy uses traits.
  209. + NativeFunction class >>
  210. + isNativeFunction:
  211. + IRInstructions >>
  212. + isSelf
  213. + isSuper
  214. + IRVariable >>
  215. + isSelf
  216. + isSuper
  217. + ScopeVar >>
  218. + isSelf
  219. + isSuper
  220. + PseudoVar >>
  221. + isSelf
  222. + isSuper
  223. +UndefinedObject >>
  224. + identityHash
  225. + value
  226. + amber/boot >>
  227. + nilAsValue
  228. - IRSend >>
  229. - isSuperSend
  230. 0.18.3:
  231. * Move {add,remove}Element from Array.prototype to kernel API.
  232. * New superclass of Behavior named BehaviorBody, pushed up some methods.
  233. * Represents named holder of methods; hierarchy and instantiation left to Behavior.
  234. * Add class Trait as subclass of BehaviorBody.
  235. * Add class TraitTransformation.
  236. * Deprecate #asJSON in favour of #asJavaScriptObject.
  237. * Deprecate #asJavascript in favour of #asJavaScriptSource.
  238. + BehaviorBody >>
  239. + setTraitComposition:
  240. + traitCompositionDefinition
  241. + traitUsers
  242. + allSubclassesDo:
  243. + superclass
  244. + Trait >>
  245. + allInstanceVariableNames
  246. + allSubclassesDo:
  247. + asJavascript
  248. + asTraitComposition
  249. + category
  250. + classTag
  251. + definition
  252. + package
  253. + superclass
  254. + theMetaClass
  255. + theNonMetaClass
  256. + exportBehaviorDefinitionTo:using:
  257. + traitUsers
  258. + package:
  259. + Trait class >>
  260. + named:package:
  261. + named:uses:package:
  262. + TraitTransformation >>
  263. + -
  264. + @
  265. + addAliases:
  266. + addExclusions:
  267. + aliases
  268. + asJSON
  269. + asJavascript
  270. + asTraitComposition
  271. + asTraitTransformation
  272. + definition
  273. + exclusions
  274. + initialize
  275. + postCopy
  276. + trait
  277. + trait:
  278. + Collection >>
  279. + copyWithout:
  280. + SequenceableCollection >>
  281. + reverseDo:
  282. + Array >>
  283. + asTraitComposition
  284. + amber/boot api >>
  285. + addElement
  286. + removeElement
  287. + wrapJavaScript
  288. + CharacterArray >>
  289. + asSymbolPrintOn:
  290. + symbolPrintString
  291. + String >>
  292. + isSelector
  293. + StringStream >>
  294. + print:
  295. + printSymbol:
  296. + Package >>
  297. + traitCompositions
  298. + Class >>
  299. + subClass:
  300. + subClass:uses:
  301. + subClass:uses:instanceVariables:
  302. + subClass:uses:instanceVariables:category:
  303. + subClass:uses:instanceVariables:classVariables:poolDictionaries:category:
  304. + subClass:uses:instanceVariables:package:
  305. + UndefinedObject >>
  306. + subClass:
  307. + subClass:uses:
  308. + subClass:uses:instanceVariables:
  309. + subClass:uses:instanceVariables:category:
  310. + subClass:uses:instanceVariables:classVariables:poolDictionaries:category:
  311. + subClass:uses:instanceVariables:package:
  312. + Metaclass >>
  313. + uses:instanceVariableNames:
  314. - Association >>
  315. - importsString
  316. - String >>
  317. - importsString
  318. - AbstractExporter
  319. - classNameFor:
  320. - Exporter >>
  321. - jsClassNameFor:
  322. 0.18.2:
  323. * Add Platform-DOM package with DOM-related stuff.
  324. * Platform-DOM not loaded by default. Packages that will use it will import it.
  325. + PlatformDom class >>
  326. + isFeasible
  327. + isDomNode:
  328. + newCustomEvent:detail:
  329. + toArray:
  330. + CharacterArray >>
  331. + asDomNode
  332. + Collection >>
  333. + asDomNode
  334. + JSObjectProxy >>
  335. + asDomNode
  336. + String >>
  337. + htmlTextContent
  338. 0.18.1:
  339. + ASTNode >>
  340. + withTail:
  341. - SendNode >>
  342. - valueWithReceiver:
  343. 0.18.0:
  344. * Remove class RethrowErrorHandler (hack for cli before 0.12.3).
  345. * Add Kernel-Dag package with abstract DAG-node and DAG-node visitor.
  346. * Some internal API changes in Compiler-* (including the move to DAG-node).
  347. - Object >>
  348. - throw:
  349. 0.17.0:
  350. * Remove classes InterfacingObject, PlatformInterface.
  351. * Deprecate $boot.nil (use $boot.nilAsReceiver).
  352. + amber/boot >>
  353. + nilAsReceiver
  354. - NativeFunction class >>
  355. - constructor:
  356. - constructor:value:
  357. - constructor:value:value:
  358. - constructor:value:value:value:
  359. 0.16.1:
  360. * Deprecate $boot.dnu (use $boot.nilAsClass).
  361. + amber/boot >>
  362. + nilAsClass
  363. 0.16.0:
  364. * Deprecate ClassBuilder >> setupClass:
  365. * $core.initialize now returns a Promise
  366. * $core.addClass now returns the class
  367. + amber/boot api >>
  368. + send2
  369. + traverseClassTree
  370. + Promise class >>
  371. + new
  372. - amber/boot api >>
  373. - wrapClassName
  374. - send
  375. - allSubclasses
  376. - AbstractCodeGenerator >>
  377. - classNameFor:
  378. 0.15.1:
  379. * Thenable class added
  380. * Promise class added, wraps JS Promise, subclass of Thenable
  381. + Thenable >>
  382. + catch:
  383. + on:do:
  384. + on:do:catch:
  385. + then:
  386. + then:catch:
  387. + then:on:do:
  388. + then:on:do:catch:
  389. + JSObjectProxy >>
  390. + catch:
  391. + on:do:
  392. + on:do:catch:
  393. + then:
  394. + then:catch:
  395. + then:on:do:
  396. + then:on:do:catch:
  397. + amber/boot api >>
  398. + seamless
  399. + Promise class >>
  400. + new:
  401. + forBlock:
  402. + value:
  403. + signal:
  404. + all:
  405. + any:
  406. 0.14.18:
  407. * Some internal API changes in Compiler-*.
  408. 0.14.14:
  409. * InterfacingObject >> ajax: deprecated
  410. * PlatformInterface class deprecated
  411. * Class BrowserInterface removed
  412. * Class Terminal, BrowserTerminal added
  413. * Class Platform, BrowserPlatform added
  414. + Environment >>
  415. + renamePackage:to:
  416. + Platform class >>
  417. + globals
  418. + newXhr
  419. + Terminal class >>
  420. + alert:
  421. + confirm:
  422. + prompt:
  423. + prompt:default:
  424. SmalltalkImage >>
  425. + existsJsGlobal:
  426. - PlatformInterface class >>
  427. - initialize
  428. - setWorker:
  429. 0.14.12:
  430. + JSObjectProxy >>
  431. + putOn:
  432. + ProtoStream >>
  433. + nextPutJSObject:
  434. 0.14.11:
  435. * Basic streaming protocol extracted from Stream to ProtoStream
  436. + Object >>
  437. + in:
  438. + JSObjectProxy >>
  439. + in:
  440. 0.14.10:
  441. + JSObjectProxy class >>
  442. + addObjectVariablesTo:ofProxy:
  443. + compareJSObjectOfProxy:withProxy:
  444. + forwardMessage:withArguments:ofProxy:
  445. + jsObject:ofProxy:
  446. + lookupProperty:ofProxy:
  447. - JSObjectProxy >>
  448. - jsObject:
  449. - lookupProperty:
  450. - compareJSObjectWith:
  451. - addObjectVariablesTo:
  452. - forwardMessage:withArguments:
  453. 0.14.4:
  454. + AmdExporter >>
  455. + importsForOutput:
  456. + AbstractCodeGenerator >>
  457. + currentPackage
  458. + currentPackage:
  459. + Compiler >>
  460. + currentPackage
  461. + currentPackage:
  462. + compile:forClass:protocol:
  463. + compileNode:forClass:package:
  464. + SemanticAnalyzer >>
  465. + thePackage
  466. + thePackage:
  467. + isVariableUndefined:inPackage:
  468. - Compiler >>
  469. - compile:
  470. - compile:forClass:
  471. - compileExpression:
  472. - SemanticAnalyzer >>
  473. - isVariableGloabllyUndefined:
  474. - Behavior >>
  475. - compile:
  476. 0.14.3:
  477. * #heliosClass is now #classTag
  478. + Compiler >>
  479. + eval:forPackage:
  480. + Behavior >>
  481. + packageOfProtocol:
  482. + Exporter >>
  483. + exportPackageContextOf:on:
  484. + exportPackageImportsOf:on:
  485. + Package >>
  486. + basicImports
  487. + imports
  488. + imports:
  489. + importsDefinition
  490. + importsFromJson:
  491. + importsAsJson
  492. + sortedImportsAsArray
  493. + validateImports:
  494. + Package class >>
  495. + named:imports:transport:
  496. + Association >>
  497. + importsString
  498. + String >>
  499. + importsString
  500. + ProtoObject >>
  501. + ifNil:
  502. + ifNil:ifNotNil:
  503. + ifNotNil:
  504. + ifNotNil:ifNil:
  505. + isNil
  506. + notNil
  507. - Object >>
  508. - ifNil:
  509. - ifNil:ifNotNil:
  510. - ifNotNil:
  511. - ifNotNil:ifNil:
  512. - isNil
  513. - notNil
  514. 0.14.1:
  515. * NativeFunction class >> constructor:[value:...] deprecated
  516. + NativeFunction class >>
  517. + constructorNamed:
  518. + constructorNamed:value:
  519. + constructorNamed:value:value:
  520. + constructorNamed:value:value:value:
  521. + constructorOf:
  522. + constructorOf:value:
  523. + constructorOf:value:value:
  524. + constructorOf:value:value:value:
  525. + functionNamed:
  526. + functionNamed:value:
  527. + functionNamed:value:value:
  528. + functionNamed:value:value:value:
  529. + functionNamed:valueWithArgs:
  530. + functionOf:
  531. + functionOf:value:
  532. + functionOf:value:value:
  533. + functionOf:value:value:value:
  534. + functionOf:valueWithArgs:
  535. + methodOf:this:
  536. + methodOf:this:value:
  537. + methodOf:this:value:value:
  538. + methodOf:this:value:value:value:
  539. + methodOf:this:valueWithArgs:
  540. + SmalltalkImage >>
  541. + optOut:
  542. + cancelOptOut:
  543. 0.14.0:
  544. + Object >>
  545. + asJQuery
  546. + asJQueryInContext:
  547. + BlockClosure >>
  548. + asJQuery
  549. + asJQueryInContext:
  550. - AnnouncementSubscription >>
  551. - block
  552. - block:
  553. - Collection >>
  554. - contains:
  555. - String >>
  556. - asSelector
  557. - asJavaScriptSelector
  558. - SmalltalkImage >>
  559. - at:
  560. - at:ifAbsent:
  561. - at:put:
  562. - current
  563. - vm
  564. - createPackage:properties:
  565. - MethodContext >>
  566. - temps
  567. - Object >>
  568. - try:catch:
  569. 0.13.2:
  570. + SourceArea class >>
  571. + codeMirror
  572. 0.13.1:
  573. * String >> asSelector is now String >> asJavaScriptMethodName
  574. * String >> asJavaScriptSelector is now String >> asJavaScriptPropertyName
  575. * smalltalk.selector is now smalltalk.st2js
  576. * smalltalk.convertSelector is now smalltalk.js2st
  577. * Collection >> ifEmpty:ifNotEmpty: family passes self to ifNotEmpty: block
  578. * Smalltalk vm is now Smalltalk core
  579. * boot.js's .vm is now .api
  580. * amber load sets' .vm is now .api
  581. * Internal variables smalltalk/globals/_st are now $core/$globals/$recv
  582. + smalltalk.
  583. + accessJavaScript
  584. + Object >>
  585. + postMessageTo:
  586. + postMessageTo:origin:
  587. + Class >>
  588. + heliosClass
  589. + SmalltalkImage >>
  590. + core
  591. + amber/boot
  592. + api
  593. + amber/{devel,deploy,lang} exports
  594. + api
  595. - ProtoObject class >>
  596. - heliosClass
  597. - Object class >>
  598. - heliosClass
  599. - amber/boot
  600. - vm
  601. 0.12.6:
  602. + String >>
  603. + value:
  604. + ProtocolAnnouncement >>
  605. + package
  606. + Behavior >>
  607. + isTestClass
  608. + Package >>
  609. + isTestPackage
  610. + amber/{devel,deploy,lang} exports
  611. + nil
  612. + amber/helpers exports
  613. + nil
  614. 0.12.4:
  615. * Package Canvas renamed to Web
  616. * Object >> try:catch: deprecated in favour of BlockClosure >> tryCatch:
  617. + Announcer >>
  618. + on:do:for:
  619. + Node >>
  620. + navigationNodeAt:ifAbsent:
  621. + BlockClosure >>
  622. + tryCatch:
  623. + Environment >>
  624. + evaluate:for:
  625. + AmberCli >>
  626. + version:
  627. + Object >>
  628. + deprecatedAPI:
  629. - Environment >>
  630. - eval:on:
  631. - evaluateString:on:
  632. 0.12.3:
  633. * Package Import-Export renamed to Kernel-ImportExport
  634. * A dozen of methods moved from Object to ProtoObject
  635. * HashedCollection >> at:ifAbsentPut: pushed up to SequenceableCollection
  636. * HashedCollection >> , is now allowed (removed shouldNotImplement)
  637. * HashedCollection and Dictionary both subclasses of AssociativeCollection
  638. * Smalltalk class moved to SmalltalkImage class, Smalltalk is now global var
  639. * Smalltalk current deprecated in favour of Smalltalk
  640. * Smalltalk at:[put:] deprecated in favour of Smalltalk globals at:[put:]
  641. * <smalltalk.ClassName> deprecated in favour of <globals.ClassName>
  642. + CompiledMethod >>
  643. + defaultProtocol
  644. + Behavior >>
  645. + compile:protocol:
  646. + removeProtocolIfEmpty:
  647. + Package >>
  648. + load
  649. + loadFromNamespace:
  650. + Package class >>
  651. + load:
  652. + load:fromNamespace:
  653. + PackageTransport >> load
  654. + PackageHandler >> load:
  655. + AmdPackageHandler >> load:
  656. + Set >> removeAll
  657. + AssociativeCollection class
  658. + BucketStore class
  659. + SmalltalkImage >>
  660. + globals
  661. + vm
  662. + settings
  663. + Setting class
  664. + String >>
  665. + asSetting
  666. + asSettingIfAbsent:
  667. + settingValue
  668. + settingValueIfAbsent:
  669. + settingValue:
  670. + Smalltalk global variable
  671. - CompiledMethod >>
  672. - category: (use #protocol:)
  673. - defaultCategory
  674. - Behavior >> compile:category:
  675. - HTMLCanvas class >>
  676. - browserVersion
  677. - isMSIE
  678. - isMozilla
  679. - isOpera
  680. - isWebkit
  681. 0.12.2:
  682. * Collection >> contains: is deprecated in favor of anySatisfy:
  683. + Announcer >> on:doOnce:
  684. + String >>
  685. + uriEncoded
  686. + uriDecoded
  687. + uriComponentEncoded
  688. + uriComponentDecoded
  689. + Collection >>
  690. + removeAll
  691. + ifEmpty:ifNotEmpty:
  692. + ifNotEmpty:ifEmpty:
  693. + anyOne
  694. + noneSatisfy:
  695. + anySatisfy:
  696. + allSatisfy:
  697. 0.12.0:
  698. * SmalltalkMethodContext.prototype.fillBlock() takes a third 'index' parameter
  699. * Existing classes moved to new KernelInfrastructure package
  700. * ImporterExporter
  701. * are now StreamExporters
  702. * aware of AMD namespaces
  703. * support transport types and commit channels
  704. + Node >>
  705. + nextChild
  706. + method
  707. + postCopy
  708. + isCascadeNode
  709. + isLastChild
  710. + BlockNode >>
  711. + nextNode:
  712. + nextChild
  713. + SendNode >>
  714. + isCascadeSendNode
  715. + shouldBeAliased
  716. + CompiledMethod >> sendTo:arguments:
  717. + Array >>
  718. + addFirst:
  719. + removeLast
  720. + Number >>
  721. + ceiling
  722. + floor
  723. + asNumber
  724. + //
  725. + cos
  726. + sin
  727. + tan
  728. + arcCos
  729. + arcSin
  730. + arcTan
  731. + log
  732. + log:
  733. + raisedTo:
  734. + sign
  735. + **
  736. + ln
  737. + e
  738. + String class >> esc
  739. + String >>
  740. + asMutator
  741. + capitalized
  742. + isCapitalized
  743. + JSProxy >> printString
  744. + Behavior >>
  745. + ownProtocols
  746. + ownMethods
  747. + JSStream >> nextPutSendIndexFor:
  748. + InterfacingObject class
  749. + Interpreter class
  750. + DocumentFragmentTag class
  751. + AbstractExporter class
  752. + PlatformInterface class
  753. - Node >> extent
  754. - JSStream >> nextPutStatement:with:
  755. - Smalltalk.installSuperclass()
  756. - ClassReferenceNode class (now handled via VariableNode)
  757. 0.11.0:
  758. * AnnouncementSubscription use #valuable: instead of #block: (deprecated)
  759. * AbstractCodeGenerator inherits from Object, not NodeVisitor
  760. * Object>>printString
  761. * replace >>printString with >>printOn:
  762. * replace >>storeString with >>printString
  763. * PackageLoader is now PackageHandler (>>commit: >>setupPackagenamed:prefix: >>ajaxPutAt:data:
  764. * Package>>fetch: is now Package>>load:
  765. * Package>>fetch:prefix: is now Package>>load:prefix:
  766. * Queue>>front replaced by Queue>>next
  767. * Queue>>frontIfAbsent: replaced by Queue>>nextIfAbsent:
  768. * Queue>>back: replaced by Queue>>nextPut:
  769. * smalltalk.addMethod() does not use explicit JS selector
  770. * JSObjectProxy>>canForwardMessage: replaced by use of JSObjectProxy>>lookupProperty: with asJavaScriptSelector
  771. * JSObjectProxy>>forwardMessage: replaced by explicit JSObjectProxy>>forwardMessage:withArguments:
  772. * String>>asJavaScriptSelector moved to Kernel-Objects package
  773. + Object>>asString
  774. + Object>>putOn:
  775. + String>>isVowel
  776. + Collection>>putOn:
  777. + CharacterArray>>putOn:
  778. + Stream>><<
  779. + Stream>>write
  780. + SequenceableCollection>>newStream
  781. + SequenceableCollection>>readStream
  782. + SequenceableCollection>>stream
  783. + SequenceableCollection>>streamClass
  784. + SequenceableCollection>>writeStream
  785. + Collection>>isImmutable
  786. + Stream>>nextPutString:
  787. + StringStream>>nextPutString:
  788. + JSStream>>nextPutClassRefFunction:
  789. + String>>crlfSanitized
  790. + inlined Block now also responds to >>value:
  791. + Parser: split literal into runtimeLiteral and parseTimeLiteral
  792. + Parser: write #(4 #(5 6 #()) 7) as #(4 (5 6 ()) 7)
  793. + Parser: write #(#on:do: #Object) as #(on:do: Object)
  794. + Parser: Symbols for binarie selectores
  795. + Package>>commit
  796. + AIContext>>initializeLocals
  797. + ASTInterpreter>>withBlockContext:
  798. + smalltalk.allSelectors()
  799. + Object>>isCompiledMethod
  800. + Object>>isPackage
  801. + Object>>isBehavior
  802. + ClassMoved Announcemen class
  803. + Behavior>>includesBehavior:
  804. + Environment>>classes
  805. + Environment>>allSelectors
  806. + Environment>>removeProtocol:
  807. + Environment>>renameProtocol:to:in:
  808. + CompiledMethod>>protocol:
  809. + Smalltalk>>globalJsVariables
  810. + Smalltalk>>addGlobalJsVariable:
  811. + Smalltalk>>deleteGlobalJsVariable:
  812. - Object>>storeOn:
  813. - Object>>log:block:
  814. - Object>>printNl
  815. - Compiler-IR.st >>javascriptSelector
  816. - Compiler-IR.st >>nextPutVar:
  817. - Kernel-Collections.st >>asSuperSelector
  818. - Collection>>readStream
  819. - Collection>>stream
  820. - Collection>>streamClass
  821. - Collection>>writeStream
  822. - Symbol class (replaced with String)
  823. - IRInlinedNonLocalReturn class
  824. - IRInlinedSend>>nonLocalReturnInliner
  825. - IRNonLocalReturnInliner class
  826. - Package>>dependencies
  827. - Package>>dependencies:
  828. - Package>>properties
  829. - Package>>jsProperties
  830. - Package>>jsProperties:
  831. - Package>>propertiesAsJSON
  832. - Package>>propertyAt:
  833. - Package>>propertyAt:ifAbsent:
  834. - Package>>propertyAt:put:
  835. - Browser>>ajaxPutAt:data: